interface DataExportProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.DataExportProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_DataExportProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.DataExportProperty |
Python | aws_cdk.aws_s3.CfnBucket.DataExportProperty |
TypeScript | aws-cdk-lib » aws_s3 » CfnBucket » 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-lib';
const dataExportProperty: s3.CfnBucket.DataExportProperty = {
destination: {
bucketArn: 'bucketArn',
format: 'format',
// the properties below are optional
bucketAccountId: 'bucketAccountId',
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
The place to store the data for an analysis.
outputSchemaVersion
Type:
string
The version of the output schema to use when exporting data.
Must be V_1
.