Enum AMITypes
- java.lang.Object
-
- java.lang.Enum<AMITypes>
-
- software.amazon.awssdk.services.eks.model.AMITypes
-
- All Implemented Interfaces:
Serializable,Comparable<AMITypes>
@Generated("software.amazon.awssdk:codegen") public enum AMITypes extends Enum<AMITypes>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AMITypesfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AMITypes>knownValues()StringtoString()static AMITypesvalueOf(String name)Returns the enum constant of this type with the specified name.static AMITypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AL2_X86_64
public static final AMITypes AL2_X86_64
-
AL2_X86_64_GPU
public static final AMITypes AL2_X86_64_GPU
-
AL2_ARM_64
public static final AMITypes AL2_ARM_64
-
CUSTOM
public static final AMITypes CUSTOM
-
BOTTLEROCKET_ARM_64
public static final AMITypes BOTTLEROCKET_ARM_64
-
BOTTLEROCKET_X86_64
public static final AMITypes BOTTLEROCKET_X86_64
-
BOTTLEROCKET_ARM_64_NVIDIA
public static final AMITypes BOTTLEROCKET_ARM_64_NVIDIA
-
BOTTLEROCKET_X86_64_NVIDIA
public static final AMITypes BOTTLEROCKET_X86_64_NVIDIA
-
WINDOWS_CORE_2019_X86_64
public static final AMITypes WINDOWS_CORE_2019_X86_64
-
WINDOWS_FULL_2019_X86_64
public static final AMITypes WINDOWS_FULL_2019_X86_64
-
WINDOWS_CORE_2022_X86_64
public static final AMITypes WINDOWS_CORE_2022_X86_64
-
WINDOWS_FULL_2022_X86_64
public static final AMITypes WINDOWS_FULL_2022_X86_64
-
AL2023_X86_64_STANDARD
public static final AMITypes AL2023_X86_64_STANDARD
-
AL2023_ARM_64_STANDARD
public static final AMITypes AL2023_ARM_64_STANDARD
-
AL2023_X86_64_NEURON
public static final AMITypes AL2023_X86_64_NEURON
-
AL2023_X86_64_NVIDIA
public static final AMITypes AL2023_X86_64_NVIDIA
-
UNKNOWN_TO_SDK_VERSION
public static final AMITypes UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AMITypes[] 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 (AMITypes c : AMITypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AMITypes 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
-
fromValue
public static AMITypes 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:
- AMITypes corresponding to the value
-
-