Amazon Lookout for Vision · JSON Structure

Amazon Lookout For Vision Output S3 Object Structure

The S3 location where Amazon Lookout for Vision saves training output.

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

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

Properties

Bucket Key

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-output-s3-object-structure.json",
  "name": "OutputS3Object",
  "description": "The S3 location where Amazon Lookout for Vision saves training output.",
  "type": "object",
  "properties": {
    "Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3BucketName"
        },
        {
          "description": "The bucket that contains the training output."
        }
      ]
    },
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ObjectKey"
        },
        {
          "description": "The location of the training output in the bucket."
        }
      ]
    }
  },
  "required": [
    "Bucket",
    "Key"
  ]
}