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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlan.ReportConfigurationPropertystatic final classAn implementation forCfnPlan.ReportConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReportOutput
The output configuration for the report.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPlan.ReportOutputConfigurationProperty>- See Also:
-
builder
-