Enum AcceleratorName
- java.lang.Object
-
- java.lang.Enum<AcceleratorName>
-
- software.amazon.awssdk.services.ec2.model.AcceleratorName
-
- All Implemented Interfaces:
Serializable,Comparable<AcceleratorName>
@Generated("software.amazon.awssdk:codegen") public enum AcceleratorName extends Enum<AcceleratorName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A10_GA100GAUDI_HL_205H100INFERENTIAINFERENTIA2K520K80L4L40_SM60RADEON_PRO_V520T4T4_GTRAINIUMTRAINIUM2U30UNKNOWN_TO_SDK_VERSIONV100VU9_P
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AcceleratorNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AcceleratorName>knownValues()StringtoString()static AcceleratorNamevalueOf(String name)Returns the enum constant of this type with the specified name.static AcceleratorName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A100
public static final AcceleratorName A100
-
INFERENTIA
public static final AcceleratorName INFERENTIA
-
K520
public static final AcceleratorName K520
-
K80
public static final AcceleratorName K80
-
M60
public static final AcceleratorName M60
-
RADEON_PRO_V520
public static final AcceleratorName RADEON_PRO_V520
-
T4
public static final AcceleratorName T4
-
VU9_P
public static final AcceleratorName VU9_P
-
V100
public static final AcceleratorName V100
-
A10_G
public static final AcceleratorName A10_G
-
H100
public static final AcceleratorName H100
-
T4_G
public static final AcceleratorName T4_G
-
L40_S
public static final AcceleratorName L40_S
-
L4
public static final AcceleratorName L4
-
GAUDI_HL_205
public static final AcceleratorName GAUDI_HL_205
-
INFERENTIA2
public static final AcceleratorName INFERENTIA2
-
TRAINIUM
public static final AcceleratorName TRAINIUM
-
TRAINIUM2
public static final AcceleratorName TRAINIUM2
-
U30
public static final AcceleratorName U30
-
UNKNOWN_TO_SDK_VERSION
public static final AcceleratorName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AcceleratorName[] 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 (AcceleratorName c : AcceleratorName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcceleratorName 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<AcceleratorName>
-
fromValue
public static AcceleratorName 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:
- AcceleratorName corresponding to the value
-
knownValues
public static Set<AcceleratorName> 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 knownAcceleratorNames
-
-