Amazon Rekognition · Schema

GetVideoJobResultRequest

GetVideoJobResultRequest schema from Amazon Rekognition

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

Properties

Name Type Description
JobId string Job identifier from the start job call.
MaxResults integer
NextToken string
SortBy string
AggregateBy string
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-get-video-job-result-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-get-video-job-result-request-schema.json",
  "title": "GetVideoJobResultRequest",
  "description": "GetVideoJobResultRequest schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "JobId": {
      "type": "string",
      "description": "Job identifier from the start job call.",
      "example": "1234567890abcdef"
    },
    "MaxResults": {
      "type": "integer",
      "example": 100
    },
    "NextToken": {
      "type": "string"
    },
    "SortBy": {
      "type": "string",
      "enum": [
        "NAME",
        "TIMESTAMP"
      ]
    },
    "AggregateBy": {
      "type": "string",
      "enum": [
        "TIMESTAMPS",
        "SEGMENTS"
      ]
    }
  },
  "required": [
    "JobId"
  ]
}