interface ReportSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnReportPlanPropsMixin.ReportSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnReportPlanPropsMixin_ReportSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnReportPlanPropsMixin.ReportSettingProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnReportPlanPropsMixin.ReportSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnReportPlanPropsMixin » ReportSettingProperty |
Contains detailed information about a report setting.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
const reportSettingProperty: backup_mixins.CfnReportPlanPropsMixin.ReportSettingProperty = {
accounts: ['accounts'],
frameworkArns: ['frameworkArns'],
organizationUnits: ['organizationUnits'],
regions: ['regions'],
reportTemplate: 'reportTemplate',
};
Properties
| Name | Type | Description |
|---|---|---|
| accounts? | string[] | These are the accounts to be included in the report. |
| framework | string[] | The Amazon Resource Names (ARNs) of the frameworks a report covers. |
| organization | string[] | These are the Organizational Units to be included in the report. |
| regions? | string[] | These are the Regions to be included in the report. |
| report | string | Identifies the report template for the report. Reports are built using a report template. The report templates are:. |
accounts?
Type:
string[]
(optional)
These are the accounts to be included in the report.
Use string value of ROOT to include all organizational units.
frameworkArns?
Type:
string[]
(optional)
The Amazon Resource Names (ARNs) of the frameworks a report covers.
organizationUnits?
Type:
string[]
(optional)
These are the Organizational Units to be included in the report.
regions?
Type:
string[]
(optional)
These are the Regions to be included in the report.
Use the wildcard as the string value to include all Regions.
reportTemplate?
Type:
string
(optional)
Identifies the 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 | SCAN_JOB_REPORT

.NET
Go
Java
Python
TypeScript