Enum LayerAttributesKeys
- java.lang.Object
-
- java.lang.Enum<LayerAttributesKeys>
-
- software.amazon.awssdk.services.opsworks.model.LayerAttributesKeys
-
- All Implemented Interfaces:
Serializable,Comparable<LayerAttributesKeys>
@Generated("software.amazon.awssdk:codegen") public enum LayerAttributesKeys extends Enum<LayerAttributesKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LayerAttributesKeysfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<LayerAttributesKeys>knownValues()StringtoString()static LayerAttributesKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static LayerAttributesKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ECS_CLUSTER_ARN
public static final LayerAttributesKeys ECS_CLUSTER_ARN
-
ENABLE_HAPROXY_STATS
public static final LayerAttributesKeys ENABLE_HAPROXY_STATS
-
HAPROXY_STATS_URL
public static final LayerAttributesKeys HAPROXY_STATS_URL
-
HAPROXY_STATS_USER
public static final LayerAttributesKeys HAPROXY_STATS_USER
-
HAPROXY_STATS_PASSWORD
public static final LayerAttributesKeys HAPROXY_STATS_PASSWORD
-
HAPROXY_HEALTH_CHECK_URL
public static final LayerAttributesKeys HAPROXY_HEALTH_CHECK_URL
-
HAPROXY_HEALTH_CHECK_METHOD
public static final LayerAttributesKeys HAPROXY_HEALTH_CHECK_METHOD
-
MYSQL_ROOT_PASSWORD
public static final LayerAttributesKeys MYSQL_ROOT_PASSWORD
-
MYSQL_ROOT_PASSWORD_UBIQUITOUS
public static final LayerAttributesKeys MYSQL_ROOT_PASSWORD_UBIQUITOUS
-
GANGLIA_URL
public static final LayerAttributesKeys GANGLIA_URL
-
GANGLIA_USER
public static final LayerAttributesKeys GANGLIA_USER
-
GANGLIA_PASSWORD
public static final LayerAttributesKeys GANGLIA_PASSWORD
-
MEMCACHED_MEMORY
public static final LayerAttributesKeys MEMCACHED_MEMORY
-
NODEJS_VERSION
public static final LayerAttributesKeys NODEJS_VERSION
-
RUBY_VERSION
public static final LayerAttributesKeys RUBY_VERSION
-
RUBYGEMS_VERSION
public static final LayerAttributesKeys RUBYGEMS_VERSION
-
MANAGE_BUNDLER
public static final LayerAttributesKeys MANAGE_BUNDLER
-
BUNDLER_VERSION
public static final LayerAttributesKeys BUNDLER_VERSION
-
RAILS_STACK
public static final LayerAttributesKeys RAILS_STACK
-
PASSENGER_VERSION
public static final LayerAttributesKeys PASSENGER_VERSION
-
JVM
public static final LayerAttributesKeys JVM
-
JVM_VERSION
public static final LayerAttributesKeys JVM_VERSION
-
JVM_OPTIONS
public static final LayerAttributesKeys JVM_OPTIONS
-
JAVA_APP_SERVER
public static final LayerAttributesKeys JAVA_APP_SERVER
-
JAVA_APP_SERVER_VERSION
public static final LayerAttributesKeys JAVA_APP_SERVER_VERSION
-
UNKNOWN_TO_SDK_VERSION
public static final LayerAttributesKeys UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LayerAttributesKeys[] 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 (LayerAttributesKeys c : LayerAttributesKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayerAttributesKeys 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<LayerAttributesKeys>
-
fromValue
public static LayerAttributesKeys 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:
- LayerAttributesKeys corresponding to the value
-
knownValues
public static Set<LayerAttributesKeys> 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 knownLayerAttributesKeyss
-
-