@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum Runtime extends Enum<Runtime>
Enum Constant and Description |
---|
CORRETTO_11 |
CORRETTO_8 |
DOTNET_6 |
GO_1 |
NODEJS_12 |
NODEJS_14 |
NODEJS_16 |
NODEJS_18 |
PHP_81 |
PYTHON_3 |
PYTHON_311 |
RUBY_31 |
Modifier and Type | Method and Description |
---|---|
static Runtime |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static Runtime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Runtime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runtime PYTHON_3
public static final Runtime NODEJS_12
public static final Runtime NODEJS_14
public static final Runtime CORRETTO_8
public static final Runtime CORRETTO_11
public static final Runtime NODEJS_16
public static final Runtime GO_1
public static final Runtime DOTNET_6
public static final Runtime PHP_81
public static final Runtime RUBY_31
public static final Runtime PYTHON_311
public static final Runtime NODEJS_18
public static Runtime[] values()
for (Runtime c : Runtime.values()) System.out.println(c);
public static Runtime valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Runtime fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.