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

KinesisVideoStreamStartSelector

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

Specifies the starting point in a Kinesis stream to start processing. You can use the producer timestamp or the fragment number. One of either producer timestamp or fragment number is required. If you use the producer timestamp, you must put the time in milliseconds. For more information about fragment numbers, see Fragment.

interface KinesisVideoStreamStartSelector {
FragmentNumber?: string | null;
ProducerTimestamp?: number | null;
}

§Properties

§
FragmentNumber?: string | null
[src]

The unique identifier of the fragment. This value monotonically increases based on the ingestion order.

§
ProducerTimestamp?: number | null
[src]

The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.