Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi S3 Object Structure

Information about an S3 object.

Type: object Properties: 3 Required: 2
RoboticsSimulation

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

Properties

bucket key etag

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-s3-object-structure.json",
  "description": "Information about an S3 object.",
  "type": "object",
  "properties": {
    "bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The bucket containing the object."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The key of the object."
        }
      ]
    },
    "etag": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Etag"
        },
        {
          "description": "The etag of the object."
        }
      ]
    }
  },
  "required": [
    "bucket",
    "key"
  ],
  "name": "S3Object"
}