toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case SSEStatus.enabling:
      return 'ENABLING';
    case SSEStatus.enabled:
      return 'ENABLED';
    case SSEStatus.disabling:
      return 'DISABLING';
    case SSEStatus.disabled:
      return 'DISABLED';
    case SSEStatus.updating:
      return 'UPDATING';
  }
}