Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetTextDetectionResponse

import type { GetTextDetectionResponse } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";
interface GetTextDetectionResponse {
JobStatus?: VideoJobStatus | null;
NextToken?: string | null;
StatusMessage?: string | null;
TextDetections?: TextDetectionResult[] | null;
TextModelVersion?: string | null;
VideoMetadata?: VideoMetadata | null;
}

§Properties

§
JobStatus?: VideoJobStatus | null
[src]

Current status of the text detection job.

§
NextToken?: string | null
[src]

If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of text.

§
StatusMessage?: string | null
[src]

If the job fails, StatusMessage provides a descriptive error message.

§
TextDetections?: TextDetectionResult[] | null
[src]

An array of text detected in the video. Each element contains the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.

§
TextModelVersion?: string | null
[src]

Version number of the text detection model that was used to detect text.

§
VideoMetadata?: VideoMetadata | null
[src]