Enum DeploymentJobErrorCode
- java.lang.Object
-
- java.lang.Enum<DeploymentJobErrorCode>
-
- software.amazon.awssdk.services.robomaker.model.DeploymentJobErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<DeploymentJobErrorCode>
@Generated("software.amazon.awssdk:codegen") public enum DeploymentJobErrorCode extends Enum<DeploymentJobErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeploymentJobErrorCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DeploymentJobErrorCode>knownValues()StringtoString()static DeploymentJobErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static DeploymentJobErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_NOT_FOUND
public static final DeploymentJobErrorCode RESOURCE_NOT_FOUND
-
ENVIRONMENT_SETUP_ERROR
public static final DeploymentJobErrorCode ENVIRONMENT_SETUP_ERROR
-
ETAG_MISMATCH
public static final DeploymentJobErrorCode ETAG_MISMATCH
-
FAILURE_THRESHOLD_BREACHED
public static final DeploymentJobErrorCode FAILURE_THRESHOLD_BREACHED
-
ROBOT_DEPLOYMENT_ABORTED
public static final DeploymentJobErrorCode ROBOT_DEPLOYMENT_ABORTED
-
ROBOT_DEPLOYMENT_NO_RESPONSE
public static final DeploymentJobErrorCode ROBOT_DEPLOYMENT_NO_RESPONSE
-
ROBOT_AGENT_CONNECTION_TIMEOUT
public static final DeploymentJobErrorCode ROBOT_AGENT_CONNECTION_TIMEOUT
-
GREENGRASS_DEPLOYMENT_FAILED
public static final DeploymentJobErrorCode GREENGRASS_DEPLOYMENT_FAILED
-
INVALID_GREENGRASS_GROUP
public static final DeploymentJobErrorCode INVALID_GREENGRASS_GROUP
-
MISSING_ROBOT_ARCHITECTURE
public static final DeploymentJobErrorCode MISSING_ROBOT_ARCHITECTURE
-
MISSING_ROBOT_APPLICATION_ARCHITECTURE
public static final DeploymentJobErrorCode MISSING_ROBOT_APPLICATION_ARCHITECTURE
-
MISSING_ROBOT_DEPLOYMENT_RESOURCE
public static final DeploymentJobErrorCode MISSING_ROBOT_DEPLOYMENT_RESOURCE
-
GREENGRASS_GROUP_VERSION_DOES_NOT_EXIST
public static final DeploymentJobErrorCode GREENGRASS_GROUP_VERSION_DOES_NOT_EXIST
-
LAMBDA_DELETED
public static final DeploymentJobErrorCode LAMBDA_DELETED
-
EXTRACTING_BUNDLE_FAILURE
public static final DeploymentJobErrorCode EXTRACTING_BUNDLE_FAILURE
-
PRE_LAUNCH_FILE_FAILURE
public static final DeploymentJobErrorCode PRE_LAUNCH_FILE_FAILURE
-
POST_LAUNCH_FILE_FAILURE
public static final DeploymentJobErrorCode POST_LAUNCH_FILE_FAILURE
-
BAD_PERMISSION_ERROR
public static final DeploymentJobErrorCode BAD_PERMISSION_ERROR
-
DOWNLOAD_CONDITION_FAILED
public static final DeploymentJobErrorCode DOWNLOAD_CONDITION_FAILED
-
BAD_LAMBDA_ASSOCIATED
public static final DeploymentJobErrorCode BAD_LAMBDA_ASSOCIATED
-
INTERNAL_SERVER_ERROR
public static final DeploymentJobErrorCode INTERNAL_SERVER_ERROR
-
ROBOT_APPLICATION_DOES_NOT_EXIST
public static final DeploymentJobErrorCode ROBOT_APPLICATION_DOES_NOT_EXIST
-
DEPLOYMENT_FLEET_DOES_NOT_EXIST
public static final DeploymentJobErrorCode DEPLOYMENT_FLEET_DOES_NOT_EXIST
-
FLEET_DEPLOYMENT_TIMEOUT
public static final DeploymentJobErrorCode FLEET_DEPLOYMENT_TIMEOUT
-
UNKNOWN_TO_SDK_VERSION
public static final DeploymentJobErrorCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DeploymentJobErrorCode[] 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 (DeploymentJobErrorCode c : DeploymentJobErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeploymentJobErrorCode 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<DeploymentJobErrorCode>
-
fromValue
public static DeploymentJobErrorCode 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:
- DeploymentJobErrorCode corresponding to the value
-
knownValues
public static Set<DeploymentJobErrorCode> 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 knownDeploymentJobErrorCodes
-
-