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

StreamNameCondition

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

Specifies the condition that streams must satisfy to be returned when you list streams (see the ListStreams API). A condition has a comparison operation and a value. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.

interface StreamNameCondition {
ComparisonOperator?: ComparisonOperator | null;
ComparisonValue?: string | null;
}

§Properties

§
ComparisonOperator?: ComparisonOperator | null
[src]

A comparison operator. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.

§
ComparisonValue?: string | null
[src]

A value to compare.