Amazon Panorama · JSON Structure

Openapi S3 Location Structure

A location in Amazon S3.

Type: object Properties: 3 Required: 2
CamerasComputer VisionEdge MLIndustrial IoT

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

Properties

BucketName ObjectKey Region

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-panorama/refs/heads/main/json-structure/openapi-s3-location-structure.json",
  "name": "S3Location",
  "description": "A location in Amazon S3.",
  "type": "object",
  "properties": {
    "BucketName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketName"
        },
        {
          "description": "A bucket name."
        }
      ]
    },
    "ObjectKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ObjectKey"
        },
        {
          "description": "An object key."
        }
      ]
    },
    "Region": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Region"
        },
        {
          "description": "The bucket's Region."
        }
      ]
    }
  },
  "required": [
    "BucketName",
    "ObjectKey"
  ]
}