toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final s3OutputPath = this.s3OutputPath;
  final accept = this.accept;
  final assembleWith = this.assembleWith;
  final kmsKeyId = this.kmsKeyId;
  return {
    'S3OutputPath': s3OutputPath,
    if (accept != null) 'Accept': accept,
    if (assembleWith != null) 'AssembleWith': assembleWith.toValue(),
    if (kmsKeyId != null) 'KmsKeyId': kmsKeyId,
  };
}