interface ReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.ReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_ReportConfigurationProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.ReportConfigurationProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.ReportConfigurationProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » ReportConfigurationProperty |
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 { aws_arcregionswitch as arcregionswitch } from 'aws-cdk-lib';
const reportConfigurationProperty: arcregionswitch.CfnPlan.ReportConfigurationProperty = {
reportOutput: [{
s3Configuration: {
bucketOwner: 'bucketOwner',
bucketPath: 'bucketPath',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| report | IResolvable | (IResolvable | Report)[] | The output configuration for the report. |
reportOutput?
Type:
IResolvable | (IResolvable | Report)[]
(optional)
The output configuration for the report.

.NET
Go
Java
Python
TypeScript