Amazon RoboMaker · Schema

CreateRobotRequest

AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.

RoboticsSimulation

Properties

Name Type Description
name object
architecture object
greengrassGroupId object
tags object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-create-robot-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-create-robot-request-schema.json",
  "title": "CreateRobotRequest",
  "description": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name for the robot."
        }
      ]
    },
    "architecture": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Architecture"
        },
        {
          "description": "The target architecture of the robot."
        }
      ]
    },
    "greengrassGroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "The Greengrass group id."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A map that contains tag keys and tag values that are attached to the robot."
        }
      ]
    }
  },
  "required": [
    "name",
    "architecture",
    "greengrassGroupId"
  ],
  "deprecated": true
}