toJson method
Implementation
Map<String, dynamic> toJson() {
final catalogEncryptionMode = this.catalogEncryptionMode;
final sseAwsKmsKeyId = this.sseAwsKmsKeyId;
return {
'CatalogEncryptionMode': catalogEncryptionMode.toValue(),
if (sseAwsKmsKeyId != null) 'SseAwsKmsKeyId': sseAwsKmsKeyId,
};
}