Amazon Lookout for Vision · JSON Structure

Amazon Lookout For Vision Input S3 Object Structure

Amazon S3 Location information for an input manifest file.

Type: object Properties: 3 Required: 2
Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

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

Properties

Bucket Key VersionId

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-lookout-for-vision/refs/heads/main/json-structure/amazon-lookout-for-vision-input-s3-object-structure.json",
  "name": "InputS3Object",
  "description": "Amazon S3 Location information for an input manifest file. ",
  "type": "object",
  "properties": {
    "Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3BucketName"
        },
        {
          "description": "The Amazon S3 bucket that contains the manifest."
        }
      ]
    },
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ObjectKey"
        },
        {
          "description": "The name and location of the manifest file withiin the bucket."
        }
      ]
    },
    "VersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ObjectVersion"
        },
        {
          "description": "The version ID of the bucket."
        }
      ]
    }
  },
  "required": [
    "Bucket",
    "Key"
  ]
}