TaskTaskReportConfigS3Destination constructor

const TaskTaskReportConfigS3Destination({
  1. required Input<String> bucketAccessRoleArn,
  2. required Input<String> s3BucketArn,
  3. Input<String?>? subdirectory,
})

Creates a new TaskTaskReportConfigS3Destination. bucketAccessRoleArn ARN of the IAM policy that allows DataSync to upload a task report to your S3 bucket. s3BucketArn Specifies the ARN of the S3 bucket where DataSync uploads your report. subdirectory Specifies a bucket prefix for your report.

Implementation

const TaskTaskReportConfigS3Destination({
  required this.bucketAccessRoleArn,
  required this.s3BucketArn,
  this.subdirectory,
});