interface ReportSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnReportPlan.ReportSettingProperty |
Java | software.amazon.awscdk.services.backup.CfnReportPlan.ReportSettingProperty |
Python | aws_cdk.aws_backup.CfnReportPlan.ReportSettingProperty |
TypeScript | @aws-cdk/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 * as backup from '@aws-cdk/aws-backup';
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.
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.

.NET
Java
Python
TypeScript