toSseKmsEncryptedObjectsStatus method

SseKmsEncryptedObjectsStatus toSseKmsEncryptedObjectsStatus()

Implementation

SseKmsEncryptedObjectsStatus toSseKmsEncryptedObjectsStatus() {
  switch (this) {
    case 'Enabled':
      return SseKmsEncryptedObjectsStatus.enabled;
    case 'Disabled':
      return SseKmsEncryptedObjectsStatus.disabled;
  }
  throw Exception('$this is not known in enum SseKmsEncryptedObjectsStatus');
}