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

DescribeInputResponse

import type { DescribeInputResponse } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Placeholder documentation for DescribeInputResponse

interface DescribeInputResponse {
Arn?: string | null;
AttachedChannels?: string[] | null;
Destinations?: InputDestination[] | null;
Id?: string | null;
InputClass?: InputClass | null;
InputDevices?: InputDeviceSettings[] | null;
InputPartnerIds?: string[] | null;
InputSourceType?: InputSourceType | null;
MediaConnectFlows?: MediaConnectFlow[] | null;
Name?: string | null;
RoleArn?: string | null;
SecurityGroups?: string[] | null;
Sources?: InputSource[] | null;
State?: InputState | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Type?: InputType | null;
}

§Properties

§
Arn?: string | null
[src]

The Unique ARN of the input (generated, immutable).

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

A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).

§
Destinations?: InputDestination[] | null
[src]

A list of the destinations of the input (PUSH-type).

§
Id?: string | null
[src]

The generated ID of the input (unique for user account, immutable).

§
InputClass?: InputClass | null
[src]

STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails. SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.

§
InputDevices?: InputDeviceSettings[] | null
[src]

Settings for the input devices.

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

A list of IDs for all Inputs which are partners of this one.

§
InputSourceType?: InputSourceType | null
[src]

Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.

§
MediaConnectFlows?: MediaConnectFlow[] | null
[src]

A list of MediaConnect Flows for this input.

§
Name?: string | null
[src]

The user-assigned name (This is a mutable value).

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the role this input assumes during and after creation.

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

A list of IDs for all the Input Security Groups attached to the input.

§
Sources?: InputSource[] | null
[src]

A list of the sources of the input (PULL-type).

§
State?: InputState | null
[src]
§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A collection of key-value pairs.

§
Type?: InputType | null
[src]