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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.StorageClassAnalysisProperty
static final class
An implementation forCfnBucket.StorageClassAnalysisProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataExport
Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported. -
builder
-