Amazon Rekognition · Schema

S3Object

Provides the S3 bucket name and object name.

Celebrity RecognitionComputer VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine LearningObject DetectionText DetectionVideo Analysis

Properties

Name Type Description
Bucket string Name of the S3 bucket.
Name string S3 object key name.
Version string S3 object version ID if versioning is enabled.
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-s3-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-rekognition/refs/heads/main/json-schema/amazon-rekognition-s3-object-schema.json",
  "title": "S3Object",
  "description": "Provides the S3 bucket name and object name.",
  "type": "object",
  "properties": {
    "Bucket": {
      "type": "string",
      "description": "Name of the S3 bucket.",
      "example": "my-images-bucket"
    },
    "Name": {
      "type": "string",
      "description": "S3 object key name.",
      "example": "images/photo.jpg"
    },
    "Version": {
      "type": "string",
      "description": "S3 object version ID if versioning is enabled.",
      "example": "v1"
    }
  }
}