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();
 

See Also: