Amazon Rekognition · Schema

StartLabelDetectionRequest

StartLabelDetectionRequest schema from Amazon Rekognition

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

Properties

Name Type Description
Video object
ClientRequestToken string
MinConfidence number
NotificationChannel object
JobTag string
Features array
Settings object
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-start-label-detection-request-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-start-label-detection-request-schema.json",
  "title": "StartLabelDetectionRequest",
  "description": "StartLabelDetectionRequest schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "Video": {
      "$ref": "#/components/schemas/Video"
    },
    "ClientRequestToken": {
      "type": "string"
    },
    "MinConfidence": {
      "type": "number",
      "format": "float",
      "example": 75.0
    },
    "NotificationChannel": {
      "$ref": "#/components/schemas/NotificationChannel"
    },
    "JobTag": {
      "type": "string"
    },
    "Features": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Settings": {
      "type": "object"
    }
  },
  "required": [
    "Video"
  ]
}