ReportPlanReportSetting constructor

const ReportPlanReportSetting({
  1. Input<List<String>?>? accounts,
  2. Input<List<String>?>? frameworkArns,
  3. Input<int?>? numberOfFrameworks,
  4. Input<List<String>?>? organizationUnits,
  5. Input<List<String>?>? regions,
  6. required Input<String> reportTemplate,
})

Creates a new ReportPlanReportSetting. accounts List of accounts a report covers. frameworkArns ARNs of the frameworks a report covers. numberOfFrameworks Number of frameworks a report covers. organizationUnits List of Organizational Units a report covers. regions List of regions a report covers. reportTemplate Report template for the report. Reports are built using a report template. The report templates are: RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT.

Implementation

const ReportPlanReportSetting({
  this.accounts,
  this.frameworkArns,
  this.numberOfFrameworks,
  this.organizationUnits,
  this.regions,
  required this.reportTemplate,
});