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