interface ReportSettingProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Backup.CfnReportPlan.ReportSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnReportPlan_ReportSettingProperty |
Java | software.amazon.awscdk.services.backup.CfnReportPlan.ReportSettingProperty |
Python | aws_cdk.aws_backup.CfnReportPlan.ReportSettingProperty |
TypeScript | aws-cdk-lib » aws_backup » CfnReportPlan » 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 { aws_backup as backup } from 'aws-cdk-lib';
const reportSettingProperty: backup.CfnReportPlan.ReportSettingProperty = {
reportTemplate: 'reportTemplate',
// the properties below are optional
accounts: ['accounts'],
frameworkArns: ['frameworkArns'],
organizationUnits: ['organizationUnits'],
regions: ['regions'],
};
Properties
Name | Type | Description |
---|---|---|
report | string | Identifies the report template for the report. Reports are built using a report template. The report templates are:. |
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. |
reportTemplate
Type:
string
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
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.