Enum ThroughputMode

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:25.432Z") @Stability(Stable) public enum ThroughputMode extends Enum<ThroughputMode>
EFS Throughput mode.

See Also:
  • Enum Constant Details

    • BURSTING

      @Stability(Stable) public static final ThroughputMode BURSTING
      This mode scales as the size of the file system in the standard storage class grows.
    • PROVISIONED

      @Stability(Stable) public static final ThroughputMode PROVISIONED
      This mode can instantly provision the throughput of the file system (in MiB/s) independent of the amount of data stored.
    • ELASTIC

      @Stability(Stable) public static final ThroughputMode ELASTIC
      This mode scales the throughput automatically regardless of file system size.
  • Method Details

    • values

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