Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Deployment Application Config Structure

Information about a deployment application configuration.

Type: object Properties: 3 Required: 3
RoboticsSimulation

DeploymentApplicationConfig is a JSON Structure definition published by Amazon RoboMaker, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

application applicationVersion launchConfig

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-deployment-application-config-structure.json",
  "description": "Information about a deployment application configuration.",
  "type": "object",
  "properties": {
    "application": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the robot application."
        }
      ]
    },
    "applicationVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentVersion"
        },
        {
          "description": "The version of the application."
        }
      ]
    },
    "launchConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentLaunchConfig"
        },
        {
          "description": "The launch configuration."
        }
      ]
    }
  },
  "required": [
    "application",
    "applicationVersion",
    "launchConfig"
  ],
  "name": "DeploymentApplicationConfig"
}