ReportGroupExportConfig constructor

const ReportGroupExportConfig({
  1. Input<ReportGroupExportConfigS3Destination?>? s3Destination,
  2. required Input<String> type,
})

Creates a new ReportGroupExportConfig. s3Destination contains information about the S3 bucket where the run of a report is exported. see S3 Destination documented below. type The export configuration type. Valid values are S3 and NO_EXPORT.

Implementation

const ReportGroupExportConfig({
  this.s3Destination,
  required this.type,
});