Enum ThroughputMode
- All Implemented Interfaces:
Serializable
,Comparable<ThroughputMode>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.143Z")
@Stability(Stable)
public enum ThroughputMode
extends Enum<ThroughputMode>
EFS Throughput mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis mode on Amazon EFS scales as the size of the file system in the standard storage class grows.This mode can instantly provision the throughput of the file system (in MiB/s) independent of the amount of data stored. -
Method Summary
Modifier and TypeMethodDescriptionstatic ThroughputMode
Returns the enum constant of this type with the specified name.static ThroughputMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BURSTING
This mode on Amazon EFS scales as the size of the file system in the standard storage class grows. -
PROVISIONED
This mode can instantly provision the throughput of the file system (in MiB/s) independent of the amount of data stored.
-
-
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
-