Enum ErrorResourceType
- java.lang.Object
-
- java.lang.Enum<ErrorResourceType>
-
- software.amazon.awssdk.services.migrationhubrefactorspaces.model.ErrorResourceType
-
- All Implemented Interfaces:
Serializable,Comparable<ErrorResourceType>
@Generated("software.amazon.awssdk:codegen") public enum ErrorResourceType extends Enum<ErrorResourceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ErrorResourceTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ErrorResourceType>knownValues()StringtoString()static ErrorResourceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ErrorResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENVIRONMENT
public static final ErrorResourceType ENVIRONMENT
-
APPLICATION
public static final ErrorResourceType APPLICATION
-
ROUTE
public static final ErrorResourceType ROUTE
-
SERVICE
public static final ErrorResourceType SERVICE
-
TRANSIT_GATEWAY
public static final ErrorResourceType TRANSIT_GATEWAY
-
TRANSIT_GATEWAY_ATTACHMENT
public static final ErrorResourceType TRANSIT_GATEWAY_ATTACHMENT
-
API_GATEWAY
public static final ErrorResourceType API_GATEWAY
-
NLB
public static final ErrorResourceType NLB
-
TARGET_GROUP
public static final ErrorResourceType TARGET_GROUP
-
LOAD_BALANCER_LISTENER
public static final ErrorResourceType LOAD_BALANCER_LISTENER
-
VPC_LINK
public static final ErrorResourceType VPC_LINK
-
LAMBDA
public static final ErrorResourceType LAMBDA
-
VPC
public static final ErrorResourceType VPC
-
SUBNET
public static final ErrorResourceType SUBNET
-
ROUTE_TABLE
public static final ErrorResourceType ROUTE_TABLE
-
SECURITY_GROUP
public static final ErrorResourceType SECURITY_GROUP
-
VPC_ENDPOINT_SERVICE_CONFIGURATION
public static final ErrorResourceType VPC_ENDPOINT_SERVICE_CONFIGURATION
-
RESOURCE_SHARE
public static final ErrorResourceType RESOURCE_SHARE
-
IAM_ROLE
public static final ErrorResourceType IAM_ROLE
-
UNKNOWN_TO_SDK_VERSION
public static final ErrorResourceType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ErrorResourceType[] 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 (ErrorResourceType c : ErrorResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorResourceType 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<ErrorResourceType>
-
fromValue
public static ErrorResourceType 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:
- ErrorResourceType corresponding to the value
-
knownValues
public static Set<ErrorResourceType> 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 knownErrorResourceTypes
-
-