Interface CfnBucket.StorageClassAnalysisProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBucket.StorageClassAnalysisProperty.Jsii$Proxy
Enclosing class:
CfnBucket

@Stability(Stable) public static interface CfnBucket.StorageClassAnalysisProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3.*;
 StorageClassAnalysisProperty storageClassAnalysisProperty = StorageClassAnalysisProperty.builder()
         .dataExport(DataExportProperty.builder()
                 .destination(DestinationProperty.builder()
                         .bucketArn("bucketArn")
                         .format("format")
                         // the properties below are optional
                         .bucketAccountId("bucketAccountId")
                         .prefix("prefix")
                         .build())
                 .outputSchemaVersion("outputSchemaVersion")
                 .build())
         .build();
 

See Also: