Enum ConnectionErrorCodeType
- java.lang.Object
-
- java.lang.Enum<ConnectionErrorCodeType>
-
- software.amazon.awssdk.services.kms.model.ConnectionErrorCodeType
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectionErrorCodeType>
@Generated("software.amazon.awssdk:codegen") public enum ConnectionErrorCodeType extends Enum<ConnectionErrorCodeType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConnectionErrorCodeTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ConnectionErrorCodeType>knownValues()StringtoString()static ConnectionErrorCodeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectionErrorCodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_CREDENTIALS
public static final ConnectionErrorCodeType INVALID_CREDENTIALS
-
CLUSTER_NOT_FOUND
public static final ConnectionErrorCodeType CLUSTER_NOT_FOUND
-
NETWORK_ERRORS
public static final ConnectionErrorCodeType NETWORK_ERRORS
-
INTERNAL_ERROR
public static final ConnectionErrorCodeType INTERNAL_ERROR
-
INSUFFICIENT_CLOUDHSM_HSMS
public static final ConnectionErrorCodeType INSUFFICIENT_CLOUDHSM_HSMS
-
USER_LOCKED_OUT
public static final ConnectionErrorCodeType USER_LOCKED_OUT
-
USER_NOT_FOUND
public static final ConnectionErrorCodeType USER_NOT_FOUND
-
USER_LOGGED_IN
public static final ConnectionErrorCodeType USER_LOGGED_IN
-
SUBNET_NOT_FOUND
public static final ConnectionErrorCodeType SUBNET_NOT_FOUND
-
INSUFFICIENT_FREE_ADDRESSES_IN_SUBNET
public static final ConnectionErrorCodeType INSUFFICIENT_FREE_ADDRESSES_IN_SUBNET
-
XKS_PROXY_ACCESS_DENIED
public static final ConnectionErrorCodeType XKS_PROXY_ACCESS_DENIED
-
XKS_PROXY_NOT_REACHABLE
public static final ConnectionErrorCodeType XKS_PROXY_NOT_REACHABLE
-
XKS_VPC_ENDPOINT_SERVICE_NOT_FOUND
public static final ConnectionErrorCodeType XKS_VPC_ENDPOINT_SERVICE_NOT_FOUND
-
XKS_PROXY_INVALID_RESPONSE
public static final ConnectionErrorCodeType XKS_PROXY_INVALID_RESPONSE
-
XKS_PROXY_INVALID_CONFIGURATION
public static final ConnectionErrorCodeType XKS_PROXY_INVALID_CONFIGURATION
-
XKS_VPC_ENDPOINT_SERVICE_INVALID_CONFIGURATION
public static final ConnectionErrorCodeType XKS_VPC_ENDPOINT_SERVICE_INVALID_CONFIGURATION
-
XKS_PROXY_TIMED_OUT
public static final ConnectionErrorCodeType XKS_PROXY_TIMED_OUT
-
XKS_PROXY_INVALID_TLS_CONFIGURATION
public static final ConnectionErrorCodeType XKS_PROXY_INVALID_TLS_CONFIGURATION
-
UNKNOWN_TO_SDK_VERSION
public static final ConnectionErrorCodeType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ConnectionErrorCodeType[] 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 (ConnectionErrorCodeType c : ConnectionErrorCodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionErrorCodeType 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<ConnectionErrorCodeType>
-
fromValue
public static ConnectionErrorCodeType 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:
- ConnectionErrorCodeType corresponding to the value
-
knownValues
public static Set<ConnectionErrorCodeType> 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 knownConnectionErrorCodeTypes
-
-