InputS3Object

Amazon S3 Location information for an input manifest file.

Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

Properties

Name Type Description
Bucket object
Key object
VersionId object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-vision-input-s3-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-vision/refs/heads/main/json-schema/amazon-lookout-for-vision-input-s3-object-schema.json",
  "title": "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"
  ]
}