interface StorageClassAnalysisProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.StorageClassAnalysisProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_StorageClassAnalysisProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.StorageClassAnalysisProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.StorageClassAnalysisProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » StorageClassAnalysisProperty |
Specifies data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes for 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 { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const storageClassAnalysisProperty: s3_mixins.CfnBucketPropsMixin.StorageClassAnalysisProperty = {
dataExport: {
destination: {
bucketAccountId: 'bucketAccountId',
bucketArn: 'bucketArn',
format: 'format',
prefix: 'prefix',
},
outputSchemaVersion: 'outputSchemaVersion',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported. |
dataExport?
Type:
IResolvable | Data
(optional)
Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.

.NET
Go
Java
Python
TypeScript