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

ConnectedHomeSettingsForUpdate

import type { ConnectedHomeSettingsForUpdate } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

The label detection settings you want to use in your stream processor. This includes the labels you want the stream processor to detect and the minimum confidence level allowed to label objects.

interface ConnectedHomeSettingsForUpdate {
Labels?: string[] | null;
MinConfidence?: number | null;
}

§Properties

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

Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".

§
MinConfidence?: number | null
[src]

The minimum confidence required to label an object in the video.