Amazon RoboMaker · Schema
CreateDeploymentJobResponse
AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
RoboticsSimulation
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| fleet | object | |
| status | object | |
| deploymentApplicationConfigs | object | |
| failureReason | object | |
| failureCode | object | |
| createdAt | object | |
| deploymentConfig | object | |
| tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-create-deployment-job-response-schema.json",
"title": "CreateDeploymentJobResponse",
"description": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The Amazon Resource Name (ARN) of the deployment job."
}
]
},
"fleet": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The target fleet for the deployment job."
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentStatus"
},
{
"description": "The status of the deployment job."
}
]
},
"deploymentApplicationConfigs": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentApplicationConfigs"
},
{
"description": "The deployment application configuration."
}
]
},
"failureReason": {
"allOf": [
{
"$ref": "#/components/schemas/GenericString"
},
{
"description": "The failure reason of the deployment job if it failed."
}
]
},
"failureCode": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentJobErrorCode"
},
{
"description": "<p>The failure code of the simulation job if it failed:</p> <dl> <dt>BadPermissionError</dt> <dd> <p>AWS Greengrass requires a service-level role permission to access other services. The role must include the <a href=\"https://console.aws.amazon.com/iam/home?#/policies/arn:aws:iam::aws:policy/service-role/AWSGreengrassResourceAccessRolePolicy$jsonEditor\"> <code>AWSGreengrassResourceAccessRolePolicy</code> managed policy</a>. </p> </dd> <dt>ExtractingBundleFailure</dt> <dd> <p>The robot application could not be extracted from the bundle.</p> </dd> <dt>FailureThresholdBreached</dt> <dd> <p>The percentage of robots that could not be updated exceeded the percentage set for the deployment.</p> </dd> <dt>GreengrassDeploymentFailed</dt> <dd> <p>The robot application could not be deployed to the robot.</p> </dd> <dt>GreengrassGroupVersionDoesNotExist</dt> <dd> <p>The AWS Greengrass group or version associated with a robot is missing.</p> </dd> <dt>InternalServerError</dt> <dd> <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details.</p> </dd> <dt>MissingRobotApplicationArchitecture</dt> <dd> <p>The robot application does not have a source that matches the architecture of the robot.</p> </dd> <dt>MissingRobotDeploymentResource</dt> <dd> <p>One or more of the resources specified for the robot application are missing. For example, does the robot application have the correct launch package and launch file?</p> </dd> <dt>PostLaunchFileFailure</dt> <dd> <p>The post-launch script failed.</p> </dd> <dt>PreLaunchFileFailure</dt> <dd> <p>The pre-launch script failed.</p> </dd> <dt>ResourceNotFound</dt> <dd> <p>One or more deployment resources are missing. For example, do robot application source bundles still exist? </p> </dd> <dt>RobotDeploymentNoResponse</dt> <dd> <p>There is no response from the robot. It might not be powered on or connected to the internet.</p> </dd> </dl>"
}
]
},
"createdAt": {
"allOf": [
{
"$ref": "#/components/schemas/CreatedAt"
},
{
"description": "The time, in milliseconds since the epoch, when the fleet was created."
}
]
},
"deploymentConfig": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentConfig"
},
{
"description": "The deployment configuration."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "The list of all tags added to the deployment job."
}
]
}
},
"deprecated": true
}