toValue method
Implementation
String toValue() {
switch (this) {
case CacheClusterStatus.createInProgress:
return 'CREATE_IN_PROGRESS';
case CacheClusterStatus.available:
return 'AVAILABLE';
case CacheClusterStatus.deleteInProgress:
return 'DELETE_IN_PROGRESS';
case CacheClusterStatus.notAvailable:
return 'NOT_AVAILABLE';
case CacheClusterStatus.flushInProgress:
return 'FLUSH_IN_PROGRESS';
}
}