Amazon Panorama · Schema

OutPutS3Location

The location of an output object in Amazon S3.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
BucketName object
ObjectKey object
View JSON Schema on GitHub

JSON Schema

openapi-out-put-s3-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-out-put-s3-location-schema.json",
  "title": "OutPutS3Location",
  "description": "The location of an output object in Amazon S3.",
  "type": "object",
  "properties": {
    "BucketName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketName"
        },
        {
          "description": "The object's bucket."
        }
      ]
    },
    "ObjectKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ObjectKey"
        },
        {
          "description": "The object's key."
        }
      ]
    }
  },
  "required": [
    "BucketName",
    "ObjectKey"
  ]
}