import * as $dara from '@darabonba/typescript'; export declare class CreateMediaLiveInputShrinkRequest extends $dara.Model { /** * @remarks * The input settings. An input can have up to two sources: primary and backup sources. * * This parameter is required. */ inputSettingsShrink?: string; /** * @remarks * The name of the input. Letters, digits, hyphens (-), and underscores (_) are supported. It can be up to 64 characters in length. * * This parameter is required. * * @example * myinput */ name?: string; /** * @remarks * The IDs of the security groups to be associated with the input. This parameter is required for PUSH inputs. * * @example * ["G6G4X5T4SZYPSTT5"] */ securityGroupIdsShrink?: string; /** * @remarks * The input type. Valid values: RTMP_PUSH, RTMP_PULL, SRT_PUSH, SRT_PULL, and MEDIA_CONNECT. * * This parameter is required. * * @example * RTMP_PUSH */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }