Enum Class LustreDataCompressionType

java.lang.Object
java.lang.Enum<LustreDataCompressionType>
software.amazon.awscdk.services.fsx.LustreDataCompressionType
All Implemented Interfaces:
Serializable, Comparable<LustreDataCompressionType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.110.0 (build 336b265)", date="2025-04-22T23:08:13.913Z") @Stability(Stable) public enum LustreDataCompressionType extends Enum<LustreDataCompressionType>
The permitted Lustre data compression algorithms.

Example:

 Map<String, LustreDataCompressionType> lustreConfiguration = Map.of(
         // ...
         "dataCompressionType", LustreDataCompressionType.LZ4);
 
  • Enum Constant Details

    • NONE

      @Stability(Stable) public static final LustreDataCompressionType NONE
      NONE - (Default) Data compression is turned off when the file system is created.
    • LZ4

      @Stability(Stable) public static final LustreDataCompressionType LZ4
      LZ4 - Data compression is turned on with the LZ4 algorithm.

      Note: When you turn data compression on for an existing file system, only newly written files are compressed. Existing files are not compressed.

  • Method Details

    • values

      public static LustreDataCompressionType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LustreDataCompressionType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null