Enum SimulationJobErrorCode
- java.lang.Object
-
- java.lang.Enum<SimulationJobErrorCode>
-
- software.amazon.awssdk.services.robomaker.model.SimulationJobErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<SimulationJobErrorCode>
@Generated("software.amazon.awssdk:codegen") public enum SimulationJobErrorCode extends Enum<SimulationJobErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SimulationJobErrorCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SimulationJobErrorCode>knownValues()StringtoString()static SimulationJobErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static SimulationJobErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNAL_SERVICE_ERROR
public static final SimulationJobErrorCode INTERNAL_SERVICE_ERROR
-
ROBOT_APPLICATION_CRASH
public static final SimulationJobErrorCode ROBOT_APPLICATION_CRASH
-
SIMULATION_APPLICATION_CRASH
public static final SimulationJobErrorCode SIMULATION_APPLICATION_CRASH
-
ROBOT_APPLICATION_HEALTH_CHECK_FAILURE
public static final SimulationJobErrorCode ROBOT_APPLICATION_HEALTH_CHECK_FAILURE
-
SIMULATION_APPLICATION_HEALTH_CHECK_FAILURE
public static final SimulationJobErrorCode SIMULATION_APPLICATION_HEALTH_CHECK_FAILURE
-
BAD_PERMISSIONS_ROBOT_APPLICATION
public static final SimulationJobErrorCode BAD_PERMISSIONS_ROBOT_APPLICATION
-
BAD_PERMISSIONS_SIMULATION_APPLICATION
public static final SimulationJobErrorCode BAD_PERMISSIONS_SIMULATION_APPLICATION
-
BAD_PERMISSIONS_S3_OBJECT
public static final SimulationJobErrorCode BAD_PERMISSIONS_S3_OBJECT
-
BAD_PERMISSIONS_S3_OUTPUT
public static final SimulationJobErrorCode BAD_PERMISSIONS_S3_OUTPUT
-
BAD_PERMISSIONS_CLOUDWATCH_LOGS
public static final SimulationJobErrorCode BAD_PERMISSIONS_CLOUDWATCH_LOGS
-
SUBNET_IP_LIMIT_EXCEEDED
public static final SimulationJobErrorCode SUBNET_IP_LIMIT_EXCEEDED
-
ENI_LIMIT_EXCEEDED
public static final SimulationJobErrorCode ENI_LIMIT_EXCEEDED
-
BAD_PERMISSIONS_USER_CREDENTIALS
public static final SimulationJobErrorCode BAD_PERMISSIONS_USER_CREDENTIALS
-
INVALID_BUNDLE_ROBOT_APPLICATION
public static final SimulationJobErrorCode INVALID_BUNDLE_ROBOT_APPLICATION
-
INVALID_BUNDLE_SIMULATION_APPLICATION
public static final SimulationJobErrorCode INVALID_BUNDLE_SIMULATION_APPLICATION
-
INVALID_S3_RESOURCE
public static final SimulationJobErrorCode INVALID_S3_RESOURCE
-
THROTTLING_ERROR
public static final SimulationJobErrorCode THROTTLING_ERROR
-
LIMIT_EXCEEDED
public static final SimulationJobErrorCode LIMIT_EXCEEDED
-
MISMATCHED_ETAG
public static final SimulationJobErrorCode MISMATCHED_ETAG
-
ROBOT_APPLICATION_VERSION_MISMATCHED_ETAG
public static final SimulationJobErrorCode ROBOT_APPLICATION_VERSION_MISMATCHED_ETAG
-
SIMULATION_APPLICATION_VERSION_MISMATCHED_ETAG
public static final SimulationJobErrorCode SIMULATION_APPLICATION_VERSION_MISMATCHED_ETAG
-
RESOURCE_NOT_FOUND
public static final SimulationJobErrorCode RESOURCE_NOT_FOUND
-
REQUEST_THROTTLED
public static final SimulationJobErrorCode REQUEST_THROTTLED
-
BATCH_TIMED_OUT
public static final SimulationJobErrorCode BATCH_TIMED_OUT
-
BATCH_CANCELED
public static final SimulationJobErrorCode BATCH_CANCELED
-
INVALID_INPUT
public static final SimulationJobErrorCode INVALID_INPUT
-
WRONG_REGION_S3_BUCKET
public static final SimulationJobErrorCode WRONG_REGION_S3_BUCKET
-
WRONG_REGION_S3_OUTPUT
public static final SimulationJobErrorCode WRONG_REGION_S3_OUTPUT
-
WRONG_REGION_ROBOT_APPLICATION
public static final SimulationJobErrorCode WRONG_REGION_ROBOT_APPLICATION
-
WRONG_REGION_SIMULATION_APPLICATION
public static final SimulationJobErrorCode WRONG_REGION_SIMULATION_APPLICATION
-
UPLOAD_CONTENT_MISMATCH_ERROR
public static final SimulationJobErrorCode UPLOAD_CONTENT_MISMATCH_ERROR
-
UNKNOWN_TO_SDK_VERSION
public static final SimulationJobErrorCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SimulationJobErrorCode[] 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 (SimulationJobErrorCode c : SimulationJobErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimulationJobErrorCode 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<SimulationJobErrorCode>
-
fromValue
public static SimulationJobErrorCode 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:
- SimulationJobErrorCode corresponding to the value
-
knownValues
public static Set<SimulationJobErrorCode> 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 knownSimulationJobErrorCodes
-
-