interface DataExportProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.DataExportProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_DataExportProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.DataExportProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.DataExportProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » CfnBucketPropsMixin » DataExportProperty |
Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const dataExportProperty: s3.CfnBucketPropsMixin.DataExportProperty = {
destination: {
bucketAccountId: 'bucketAccountId',
bucketArn: 'bucketArn',
format: 'format',
prefix: 'prefix',
},
outputSchemaVersion: 'outputSchemaVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Destination | The place to store the data for an analysis. |
| output | string | The version of the output schema to use when exporting data. |
destination?
Type:
IResolvable | Destination
(optional)
The place to store the data for an analysis.
outputSchemaVersion?
Type:
string
(optional)
The version of the output schema to use when exporting data.
Must be V_1 .

.NET
Go
Java
Python
TypeScript