aws-cdk-lib.aws_s3.CfnBucket.DataExportProperty

interface DataExportProperty

LanguageType name
.NETAmazon.CDK.AWS.S3.CfnBucket.DataExportProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_DataExportProperty
Javasoftware.amazon.awscdk.services.s3.CfnBucket.DataExportProperty
Pythonaws_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

NameTypeDescription
destinationIResolvable | DestinationPropertyThe place to store the data for an analysis.
outputSchemaVersionstringThe version of the output schema to use when exporting data.

destination

Type: IResolvable | DestinationProperty

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 .