Amazon Rekognition · JSON Structure

Amazon Rekognition S3 Object Structure

Provides the S3 bucket name and object name.

Type: object Properties: 3
Celebrity RecognitionComputer VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine LearningObject DetectionText DetectionVideo Analysis

S3Object is a JSON Structure definition published by Amazon Rekognition, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Bucket Name Version

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-rekognition/refs/heads/main/json-structure/amazon-rekognition-s3-object-structure.json",
  "name": "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"
    }
  }
}