interface S3ReportOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.S3ReportOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_S3ReportOutputConfigurationProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.S3ReportOutputConfigurationProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.S3ReportOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » S3ReportOutputConfigurationProperty |
Configuration for delivering generated reports to an Amazon S3 bucket.
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 s3ReportOutputConfigurationProperty: arcregionswitch.CfnPlan.S3ReportOutputConfigurationProperty = {
bucketOwner: 'bucketOwner',
bucketPath: 'bucketPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The AWS account ID that owns the S3 bucket. |
| bucket | string | The S3 bucket name and optional prefix where reports are stored. |
bucketOwner?
Type:
string
(optional)
The AWS account ID that owns the S3 bucket.
Required to ensure the bucket is still owned by the same expected owner at generation time.
bucketPath?
Type:
string
(optional)
The S3 bucket name and optional prefix where reports are stored.
Format: bucket-name or bucket-name/prefix.

.NET
Go
Java
Python
TypeScript