toJson method
Implementation
Map<String, dynamic> toJson() {
final s3OutputLocation = this.s3OutputLocation;
final kmsKeyId = this.kmsKeyId;
return {
'S3OutputLocation': s3OutputLocation,
if (kmsKeyId != null) 'KmsKeyId': kmsKeyId,
};
}