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

ListFragmentsInput

import type { ListFragmentsInput } from "https://aws-api.deno.dev/v0.3/services/kinesisvideoarchivedmedia.ts?docs=full";
interface ListFragmentsInput {
FragmentSelector?: FragmentSelector | null;
MaxResults?: number | null;
NextToken?: string | null;
StreamARN?: string | null;
StreamName?: string | null;
}

§Properties

§
FragmentSelector?: FragmentSelector | null
[src]

Describes the timestamp range and timestamp origin for the range of fragments to return.

§
MaxResults?: number | null
[src]

The total number of fragments to return. If the total number of fragments available is more than the value specified in max-results, then a "ListFragmentsOutput$NextToken" is provided in the output that you can use to resume pagination.

§
NextToken?: string | null
[src]

A token to specify where to start paginating. This is the "ListFragmentsOutput$NextToken" from a previously truncated response.

§
StreamARN?: string | null
[src]

The Amazon Resource Name (ARN) of the stream from which to retrieve a fragment list. Specify either this parameter or the StreamName parameter.

§
StreamName?: string | null
[src]

The name of the stream from which to retrieve a fragment list. Specify either this parameter or the StreamARN parameter.