toJson method

Map<String, dynamic> toJson()

Implementation

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