Amazon RoboMaker · Schema

Source

Information about a source.

RoboticsSimulation

Properties

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

JSON Schema

amazon-robomaker-openapi-source-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-source-schema.json",
  "title": "Source",
  "description": "Information about a source.",
  "type": "object",
  "properties": {
    "s3Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The s3 bucket name."
        }
      ]
    },
    "s3Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The s3 object key."
        }
      ]
    },
    "etag": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Etag"
        },
        {
          "description": "A hash of the object specified by <code>s3Bucket</code> and <code>s3Key</code>."
        }
      ]
    },
    "architecture": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Architecture"
        },
        {
          "description": "The taget processor architecture for the application."
        }
      ]
    }
  }
}