Amazon RoboMaker · Schema

DescribeSimulationApplicationResponse

DescribeSimulationApplicationResponse schema from openapi

RoboticsSimulation

Properties

Name Type Description
arn object
name object
version object
sources object
simulationSoftwareSuite object
robotSoftwareSuite object
renderingEngine object
revisionId object
lastUpdatedAt object
tags object
environment object
imageDigest object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-describe-simulation-application-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-simulation-application-response-schema.json",
  "title": "DescribeSimulationApplicationResponse",
  "description": "DescribeSimulationApplicationResponse schema from openapi",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the robot simulation application."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the simulation application."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "The version of the simulation application."
        }
      ]
    },
    "sources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Sources"
        },
        {
          "description": "The sources of the simulation application."
        }
      ]
    },
    "simulationSoftwareSuite": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimulationSoftwareSuite"
        },
        {
          "description": "The simulation software suite used by the simulation application."
        }
      ]
    },
    "robotSoftwareSuite": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RobotSoftwareSuite"
        },
        {
          "description": "Information about the robot software suite (ROS distribution)."
        }
      ]
    },
    "renderingEngine": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RenderingEngine"
        },
        {
          "description": "The rendering engine for the simulation application."
        }
      ]
    },
    "revisionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionId"
        },
        {
          "description": "The revision id of the simulation application."
        }
      ]
    },
    "lastUpdatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LastUpdatedAt"
        },
        {
          "description": "The time, in milliseconds since the epoch, when the simulation application was last updated."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The list of all tags added to the specified simulation application."
        }
      ]
    },
    "environment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Environment"
        },
        {
          "description": "The object that contains the Docker image URI used to create the simulation application."
        }
      ]
    },
    "imageDigest": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageDigest"
        },
        {
          "description": "A SHA256 identifier for the Docker image that you use for your simulation application."
        }
      ]
    }
  }
}