Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Create World Export Job Request Structure

CreateWorldExportJobRequest schema from openapi

Type: object Properties: 5 Required: 3
RoboticsSimulation

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

Properties

clientRequestToken worlds outputLocation iamRole tags

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-export-job-request-structure.json",
  "description": "CreateWorldExportJobRequest 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."
        }
      ]
    },
    "worlds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arns"
        },
        {
          "description": "A list of Amazon Resource Names (arns) that correspond to worlds to export."
        }
      ]
    },
    "outputLocation": {
      "$ref": "#/components/schemas/OutputLocation"
    },
    "iamRole": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IamRole"
        },
        {
          "description": "The IAM role that the world export process uses to access the Amazon S3 bucket and put the export."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A map that contains tag keys and tag values that are attached to the world export job."
        }
      ]
    }
  },
  "required": [
    "worlds",
    "outputLocation",
    "iamRole"
  ],
  "name": "CreateWorldExportJobRequest"
}