Amazon RoboMaker · Schema

FailedCreateSimulationJobRequest

Information about a failed create simulation job request.

RoboticsSimulation

Properties

Name Type Description
request object
failureReason object
failureCode object
failedAt object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-failed-create-simulation-job-request-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-failed-create-simulation-job-request-schema.json",
  "title": "FailedCreateSimulationJobRequest",
  "description": "Information about a failed create simulation job request.",
  "type": "object",
  "properties": {
    "request": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimulationJobRequest"
        },
        {
          "description": "The simulation job request."
        }
      ]
    },
    "failureReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The failure reason of the simulation job request."
        }
      ]
    },
    "failureCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimulationJobErrorCode"
        },
        {
          "description": "The failure code."
        }
      ]
    },
    "failedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FailedAt"
        },
        {
          "description": "The time, in milliseconds since the epoch, when the simulation job batch failed."
        }
      ]
    }
  }
}