Enum TargetHealthReasonEnum
- java.lang.Object
-
- java.lang.Enum<TargetHealthReasonEnum>
-
- software.amazon.awssdk.services.elasticloadbalancingv2.model.TargetHealthReasonEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<TargetHealthReasonEnum>
@Generated("software.amazon.awssdk:codegen") public enum TargetHealthReasonEnum extends Enum<TargetHealthReasonEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TargetHealthReasonEnum
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TargetHealthReasonEnum>
knownValues()
String
toString()
static TargetHealthReasonEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static TargetHealthReasonEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ELB_REGISTRATION_IN_PROGRESS
public static final TargetHealthReasonEnum ELB_REGISTRATION_IN_PROGRESS
-
ELB_INITIAL_HEALTH_CHECKING
public static final TargetHealthReasonEnum ELB_INITIAL_HEALTH_CHECKING
-
TARGET_RESPONSE_CODE_MISMATCH
public static final TargetHealthReasonEnum TARGET_RESPONSE_CODE_MISMATCH
-
TARGET_TIMEOUT
public static final TargetHealthReasonEnum TARGET_TIMEOUT
-
TARGET_FAILED_HEALTH_CHECKS
public static final TargetHealthReasonEnum TARGET_FAILED_HEALTH_CHECKS
-
TARGET_NOT_REGISTERED
public static final TargetHealthReasonEnum TARGET_NOT_REGISTERED
-
TARGET_NOT_IN_USE
public static final TargetHealthReasonEnum TARGET_NOT_IN_USE
-
TARGET_DEREGISTRATION_IN_PROGRESS
public static final TargetHealthReasonEnum TARGET_DEREGISTRATION_IN_PROGRESS
-
TARGET_INVALID_STATE
public static final TargetHealthReasonEnum TARGET_INVALID_STATE
-
TARGET_IP_UNUSABLE
public static final TargetHealthReasonEnum TARGET_IP_UNUSABLE
-
TARGET_HEALTH_CHECK_DISABLED
public static final TargetHealthReasonEnum TARGET_HEALTH_CHECK_DISABLED
-
ELB_INTERNAL_ERROR
public static final TargetHealthReasonEnum ELB_INTERNAL_ERROR
-
UNKNOWN_TO_SDK_VERSION
public static final TargetHealthReasonEnum UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TargetHealthReasonEnum[] 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 (TargetHealthReasonEnum c : TargetHealthReasonEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TargetHealthReasonEnum 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:
toString
in classEnum<TargetHealthReasonEnum>
-
fromValue
public static TargetHealthReasonEnum 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:
- TargetHealthReasonEnum corresponding to the value
-
knownValues
public static Set<TargetHealthReasonEnum> knownValues()
Use this in place ofvalues()
to return aSet
of all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION
.- Returns:
- a
Set
of knownTargetHealthReasonEnum
s
-
-