Enum StreamingInstanceType
- java.lang.Object
-
- java.lang.Enum<StreamingInstanceType>
-
- software.amazon.awssdk.services.nimble.model.StreamingInstanceType
-
- All Implemented Interfaces:
Serializable,Comparable<StreamingInstanceType>
@Generated("software.amazon.awssdk:codegen") public enum StreamingInstanceType extends Enum<StreamingInstanceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description G3_4_XLARGEG3_S_XLARGEG4_DN_12_XLARGEG4_DN_16_XLARGEG4_DN_2_XLARGEG4_DN_4_XLARGEG4_DN_8_XLARGEG4_DN_XLARGEG5_16_XLARGEG5_2_XLARGEG5_4_XLARGEG5_8_XLARGEG5_XLARGEUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StreamingInstanceTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StreamingInstanceType>knownValues()StringtoString()static StreamingInstanceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static StreamingInstanceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
G4_DN_XLARGE
public static final StreamingInstanceType G4_DN_XLARGE
-
G4_DN_2_XLARGE
public static final StreamingInstanceType G4_DN_2_XLARGE
-
G4_DN_4_XLARGE
public static final StreamingInstanceType G4_DN_4_XLARGE
-
G4_DN_8_XLARGE
public static final StreamingInstanceType G4_DN_8_XLARGE
-
G4_DN_12_XLARGE
public static final StreamingInstanceType G4_DN_12_XLARGE
-
G4_DN_16_XLARGE
public static final StreamingInstanceType G4_DN_16_XLARGE
-
G3_4_XLARGE
public static final StreamingInstanceType G3_4_XLARGE
-
G3_S_XLARGE
public static final StreamingInstanceType G3_S_XLARGE
-
G5_XLARGE
public static final StreamingInstanceType G5_XLARGE
-
G5_2_XLARGE
public static final StreamingInstanceType G5_2_XLARGE
-
G5_4_XLARGE
public static final StreamingInstanceType G5_4_XLARGE
-
G5_8_XLARGE
public static final StreamingInstanceType G5_8_XLARGE
-
G5_16_XLARGE
public static final StreamingInstanceType G5_16_XLARGE
-
UNKNOWN_TO_SDK_VERSION
public static final StreamingInstanceType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StreamingInstanceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StreamingInstanceType c : StreamingInstanceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamingInstanceType 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 nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<StreamingInstanceType>
-
fromValue
public static StreamingInstanceType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- StreamingInstanceType corresponding to the value
-
knownValues
public static Set<StreamingInstanceType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownStreamingInstanceTypes
-
-