import * as $dara from '@darabonba/typescript'; export declare class ListMediaLiveInputsResponseBodyInputsInputInfos extends $dara.Model { /** * @remarks * The endpoint that the stream is pushed to. This parameter is returned for PUSH inputs. * * @example * rtmp://domain/app/stream */ destHost?: string; /** * @remarks * The ID of the flow from MediaConnect. * * @example * ******81-9693-40dc-bbab-db5e49****** */ flowId?: string; /** * @remarks * The output name of the MediaConnect flow. * * @example * myFlowOutputName */ flowOutputName?: string; /** * @remarks * The URL for input monitoring. * * @example * rtmp://domain/app/stream_for_monitor */ monitorUrl?: string; /** * @remarks * The source URL where the stream is pulled from. This parameter is returned for PULL inputs. * * @example * rtmp://domain/app/stream */ sourceUrl?: string; srtLatency?: number; srtMaxBitrate?: number; srtPassphrase?: string; srtPbKeyLen?: number; /** * @remarks * The name of the pushed stream. This parameter is returned for PUSH inputs. * * @example * mystream */ streamName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListMediaLiveInputsResponseBodyInputs extends $dara.Model { /** * @remarks * The IDs of the channels associated with the input. */ channelIds?: string[]; /** * @remarks * The time when the input was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2024-12-03T06:56:42Z */ createTime?: string; /** * @remarks * The ID of the input. * * @example * SEGK5KA6KYKAWQQH */ inputId?: string; /** * @remarks * The input configurations. */ inputInfos?: ListMediaLiveInputsResponseBodyInputsInputInfos[]; /** * @remarks * The name of the input. * * @example * myinput */ name?: string; /** * @remarks * The IDs of the security groups associated with the input. */ securityGroupIds?: string[]; /** * @remarks * The input type. * * @example * RTMP_PUSH */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListMediaLiveInputsResponseBody extends $dara.Model { /** * @remarks * The inputs. */ inputs?: ListMediaLiveInputsResponseBodyInputs[]; /** * @remarks * The number of entries returned per page. * * @example * 10 */ maxResults?: number; /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 200 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }