Enum 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.101.0 (build b95fe5d)", date="2024-07-11T03:45:55.029Z") @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 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 LustreDataCompressionType 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