Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Create World Generation Job Request Structure

CreateWorldGenerationJobRequest schema from openapi

Type: object Properties: 5 Required: 2
RoboticsSimulation

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

Properties

clientRequestToken template worldCount tags worldTags

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-create-world-generation-job-request-structure.json",
  "description": "CreateWorldGenerationJobRequest schema from openapi",
  "type": "object",
  "properties": {
    "clientRequestToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientRequestToken"
        },
        {
          "description": "Unique, case-sensitive identifier that you provide to ensure the idempotency of the request."
        }
      ]
    },
    "template": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (arn) of the world template describing the worlds you want to create."
        }
      ]
    },
    "worldCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorldCount"
        },
        {
          "description": "Information about the world count."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A map that contains tag keys and tag values that are attached to the world generator job."
        }
      ]
    },
    "worldTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A map that contains tag keys and tag values that are attached to the generated worlds."
        }
      ]
    }
  },
  "required": [
    "template",
    "worldCount"
  ],
  "name": "CreateWorldGenerationJobRequest"
}