interface ReportOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.ReportOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_ReportOutputConfigurationProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.ReportOutputConfigurationProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.ReportOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » ReportOutputConfigurationProperty |
Configuration for report output destinations used in a Region switch plan.
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 reportOutputConfigurationProperty: arcregionswitch.CfnPlan.ReportOutputConfigurationProperty = {
s3Configuration: {
bucketOwner: 'bucketOwner',
bucketPath: 'bucketPath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Configuration for delivering reports to an Amazon S3 bucket. |
s3Configuration
Type:
IResolvable | S3
Configuration for delivering reports to an Amazon S3 bucket.

.NET
Go
Java
Python
TypeScript