TaskTaskReportConfig constructor

const TaskTaskReportConfig({
  1. Input<String?>? outputType,
  2. Input<String?>? reportLevel,
  3. Input<TaskTaskReportConfigReportOverrides?>? reportOverrides,
  4. required Input<TaskTaskReportConfigS3Destination> s3Destination,
  5. Input<String?>? s3ObjectVersioning,
})

Creates a new TaskTaskReportConfig. outputType Specifies the type of task report you'd like. Valid values: SUMMARY_ONLY and STANDARD. reportLevel Specifies whether you want your task report to include only what went wrong with your transfer or a list of what succeeded and didn't. Valid values: ERRORS_ONLY and SUCCESSES_AND_ERRORS. reportOverrides Configuration block containing the configuration of the reporting level for aspects of your task report. See reportOverrides below. s3Destination Configuration block containing the configuration for the Amazon S3 bucket where DataSync uploads your task report. See s3Destination below. s3ObjectVersioning Specifies whether your task report includes the new version of each object transferred into an S3 bucket. This only applies if you enable versioning on your bucket. Keep in mind that setting this to INCLUDE can increase the duration of your task execution. Valid values: INCLUDE and NONE.

Implementation

const TaskTaskReportConfig({
  this.outputType,
  this.reportLevel,
  this.reportOverrides,
  required this.s3Destination,
  this.s3ObjectVersioning,
});