Interface CfnPlan.ReportConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPlan.ReportConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPlan

@Stability(Stable) public static interface CfnPlan.ReportConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for automatic report generation for plan executions.

When configured, Region switch automatically generates a report after each plan execution that includes execution events, plan configuration, and CloudWatch alarm states.

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.arcregionswitch.*;
 ReportConfigurationProperty reportConfigurationProperty = ReportConfigurationProperty.builder()
         .reportOutput(List.of(ReportOutputConfigurationProperty.builder()
                 .s3Configuration(S3ReportOutputConfigurationProperty.builder()
                         .bucketOwner("bucketOwner")
                         .bucketPath("bucketPath")
                         .build())
                 .build()))
         .build();
 

See Also: