ReportGroupExportConfigS3Destination constructor

const ReportGroupExportConfigS3Destination({
  1. required Input<String> bucket,
  2. Input<bool?>? encryptionDisabled,
  3. required Input<String> encryptionKey,
  4. Input<String?>? packaging,
  5. Input<String?>? path,
})

Creates a new ReportGroupExportConfigS3Destination. bucket The name of the S3 bucket where the raw data of a report are exported. encryptionDisabled A boolean value that specifies if the results of a report are encrypted. encryptionKey The encryption key for the report's encrypted raw data. The KMS key ARN. packaging The type of build output artifact to create. Valid values are: NONE (default) and ZIP. path The path to the exported report's raw data results.

Implementation

const ReportGroupExportConfigS3Destination({
  required this.bucket,
  this.encryptionDisabled,
  required this.encryptionKey,
  this.packaging,
  this.path,
});