Interface CfnReportPlan.ReportSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReportPlan.ReportSettingProperty.Jsii$Proxy
- Enclosing class:
- CfnReportPlan
@Stability(Stable)
public static interface CfnReportPlan.ReportSettingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.backup.*; ReportSettingProperty reportSettingProperty = ReportSettingProperty.builder() .reportTemplate("reportTemplate") // the properties below are optional .accounts(List.of("accounts")) .frameworkArns(List.of("frameworkArns")) .organizationUnits(List.of("organizationUnits")) .regions(List.of("regions")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReportPlan.ReportSettingProperty
static final class
An implementation forCfnReportPlan.ReportSettingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
These are the accounts to be included in the report.The Amazon Resource Names (ARNs) of the frameworks a report covers.These are the Organizational Units to be included in the report.These are the Regions to be included in the report.Identifies the report template for the report.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReportTemplate
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
-
getAccounts
These are the accounts to be included in the report. -
getFrameworkArns
The Amazon Resource Names (ARNs) of the frameworks a report covers. -
getOrganizationUnits
These are the Organizational Units to be included in the report. -
getRegions
These are the Regions to be included in the report. -
builder
-