Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Robot Deployment Structure

Information about a robot deployment.

Type: object Properties: 7
RoboticsSimulation

RobotDeployment is a JSON Structure definition published by Amazon RoboMaker, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn deploymentStartTime deploymentFinishTime status progressDetail failureReason failureCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-structure/amazon-robomaker-openapi-robot-deployment-structure.json",
  "description": "Information about a robot deployment.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The robot deployment Amazon Resource Name (ARN)."
        }
      ]
    },
    "deploymentStartTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedAt"
        },
        {
          "description": "The time, in milliseconds since the epoch, when the deployment was started."
        }
      ]
    },
    "deploymentFinishTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedAt"
        },
        {
          "description": "The time, in milliseconds since the epoch, when the deployment finished."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RobotStatus"
        },
        {
          "description": "The status of the robot deployment."
        }
      ]
    },
    "progressDetail": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProgressDetail"
        },
        {
          "description": "Information about how the deployment is progressing."
        }
      ]
    },
    "failureReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "A short description of the reason why the robot deployment failed."
        }
      ]
    },
    "failureCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentJobErrorCode"
        },
        {
          "description": "The robot deployment failure code."
        }
      ]
    }
  },
  "name": "RobotDeployment"
}