toSSEType method

SSEType toSSEType()

Implementation

SSEType toSSEType() {
  switch (this) {
    case 'AES256':
      return SSEType.aes256;
    case 'KMS':
      return SSEType.kms;
  }
  throw Exception('$this is not known in enum SSEType');
}