Enum StorageClass
- All Implemented Interfaces:
Serializable,Comparable<StorageClass>,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-08-27T15:24:50.729Z")
@Stability(Experimental)
public enum StorageClass
extends Enum<StorageClass>
(experimental) Storage class for S3 Tables.
Determines the storage tier used for table data, allowing optimization for different access patterns and cost profiles.
Example:
// Create a table bucket with INTELLIGENT_TIERING storage class
TableBucket tableBucketWithStorageClass = TableBucket.Builder.create(scope, "TableBucketWithStorageClass")
.tableBucketName("storage-class-bucket")
.storageClass(StorageClass.INTELLIGENT_TIERING)
.build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(experimental) Intelligent-Tiering storage class that automatically moves data between access tiers.(experimental) Standard storage class for frequently accessed data. -
Method Summary
Modifier and TypeMethodDescriptionstatic StorageClassReturns the enum constant of this type with the specified name.static StorageClass[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STANDARD
(experimental) Standard storage class for frequently accessed data.Use this for tables with consistent, high-frequency access patterns.
-
INTELLIGENT_TIERING
(experimental) Intelligent-Tiering storage class that automatically moves data between access tiers.Use this for tables with unknown or changing access patterns to optimize costs while maintaining performance for frequently accessed data.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-