Amazon RoboMaker · Schema

DescribeDeploymentJobResponse

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
deploymentConfig object
deploymentApplicationConfigs object
failureReason object
failureCode object
createdAt object
robotDeploymentSummary object
tags object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-describe-deployment-job-response-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-describe-deployment-job-response-schema.json",
  "title": "DescribeDeploymentJobResponse",
  "description": "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 Amazon Resource Name (ARN) of the fleet."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentStatus"
        },
        {
          "description": "The status of the deployment job."
        }
      ]
    },
    "deploymentConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentConfig"
        },
        {
          "description": "The deployment configuration."
        }
      ]
    },
    "deploymentApplicationConfigs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentApplicationConfigs"
        },
        {
          "description": "The deployment application 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."
        }
      ]
    },
    "robotDeploymentSummary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RobotDeploymentSummary"
        },
        {
          "description": "A list of robot deployment summaries."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The list of all tags added to the specified deployment job."
        }
      ]
    }
  },
  "deprecated": true
}