Amazon RoboMaker · Schema

TemplateLocation

Information about a template location.

RoboticsSimulation

Properties

Name Type Description
s3Bucket object
s3Key object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-template-location-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-template-location-schema.json",
  "title": "TemplateLocation",
  "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"
  ]
}