interface ReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.ReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_ReportConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.ReportConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.ReportConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » 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/cfn-property-mixins';
const reportConfigurationProperty: arcregionswitch.CfnPlanPropsMixin.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