toEncryptionOption method
Implementation
EncryptionOption toEncryptionOption() {
switch (this) {
case 'SSE_S3':
return EncryptionOption.sseS3;
case 'SSE_KMS':
return EncryptionOption.sseKms;
case 'CSE_KMS':
return EncryptionOption.cseKms;
}
throw Exception('$this is not known in enum EncryptionOption');
}