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

GetLabelDetectionResponse

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

§Properties

§
JobStatus?: VideoJobStatus | null
[src]

The current status of the label detection job.

§
LabelModelVersion?: string | null
[src]

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

§
Labels?: LabelDetection[] | null
[src]

An array of labels detected in the video. Each element contains the detected label and the time, in milliseconds from the start of the video, that the label was detected.

§
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 labels.

§
StatusMessage?: string | null
[src]

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

§
VideoMetadata?: VideoMetadata | null
[src]

Information about a video that Amazon Rekognition Video analyzed. Videometadata is returned in every page of paginated responses from a Amazon Rekognition video operation.