S3OutputLocation.fromJson constructor

S3OutputLocation.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory S3OutputLocation.fromJson(Map<String, dynamic> json) {
  return S3OutputLocation(
    outputS3BucketName: json['OutputS3BucketName'] as String?,
    outputS3KeyPrefix: json['OutputS3KeyPrefix'] as String?,
    outputS3Region: json['OutputS3Region'] as String?,
  );
}