java.lang.Object
java.lang.Enum<StorageClass>
software.amazon.awscdk.services.s3tables.alpha.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();
 
  • Enum Constant Details

    • STANDARD

      @Stability(Experimental) public static final StorageClass STANDARD
      (experimental) Standard storage class for frequently accessed data.

      Use this for tables with consistent, high-frequency access patterns.

    • INTELLIGENT_TIERING

      @Stability(Experimental) public static final StorageClass 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

      public static StorageClass[] 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

      public static StorageClass valueOf(String name)
      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 name
      NullPointerException - if the argument is null