Amazon RoboMaker · Schema

DeploymentJob

Information about a deployment job.

RoboticsSimulation

Properties

Name Type Description
arn object
fleet object
status object
deploymentApplicationConfigs object
deploymentConfig object
failureReason object
failureCode object
createdAt object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-deployment-job-schema.json Raw ↑
{
  "$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-deployment-job-schema.json",
  "title": "DeploymentJob",
  "description": "Information about a deployment job.",
  "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 Amazon Resource Name (ARN) of the fleet."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentStatus"
        },
        {
          "description": "The status of the deployment job."
        }
      ]
    },
    "deploymentApplicationConfigs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentApplicationConfigs"
        },
        {
          "description": "The deployment application configuration."
        }
      ]
    },
    "deploymentConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentConfig"
        },
        {
          "description": "The deployment configuration."
        }
      ]
    },
    "failureReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "A short description of the reason why the deployment job failed."
        }
      ]
    },
    "failureCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentJobErrorCode"
        },
        {
          "description": "The deployment job failure code."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedAt"
        },
        {
          "description": "The time, in milliseconds since the epoch, when the deployment job was created."
        }
      ]
    }
  }
}