@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum LayerType extends Enum<LayerType>
Enum Constant and Description |
---|
AwsFlowRuby |
Custom |
DbMaster |
EcsCluster |
JavaApp |
Lb |
Memcached |
MonitoringMaster |
NodejsApp |
PhpApp |
RailsApp |
Web |
Modifier and Type | Method and Description |
---|---|
static LayerType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static LayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayerType AwsFlowRuby
public static final LayerType EcsCluster
public static final LayerType JavaApp
public static final LayerType Lb
public static final LayerType Web
public static final LayerType PhpApp
public static final LayerType RailsApp
public static final LayerType NodejsApp
public static final LayerType Memcached
public static final LayerType DbMaster
public static final LayerType MonitoringMaster
public static final LayerType Custom
public static LayerType[] values()
for (LayerType c : LayerType.values()) System.out.println(c);
public static LayerType 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 LayerType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.