Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Template Location Structure

Information about a template location.

Type: object Properties: 2 Required: 2
RoboticsSimulation

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

Properties

s3Bucket s3Key

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-template-location-structure.json",
  "description": "Information about a template location.",
  "type": "object",
  "properties": {
    "s3Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The Amazon S3 bucket name."
        }
      ]
    },
    "s3Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The list of S3 keys identifying the data source files."
        }
      ]
    }
  },
  "required": [
    "s3Bucket",
    "s3Key"
  ],
  "name": "TemplateLocation"
}