S3Destination.fromJson constructor

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

Implementation

factory S3Destination.fromJson(Map<String, dynamic> json) {
  return S3Destination(
    bucketName: json['bucketName'] as String,
    manifestKey: json['manifestKey'] as String,
    roleArn: json['roleArn'] as String,
  );
}