import * as $dara from '@darabonba/typescript'; export declare class CreateMediaLiveChannelShrinkRequest extends $dara.Model { /** * @remarks * The audio settings. */ audioSettingsShrink?: string; /** * @remarks * The associated inputs. * * This parameter is required. */ inputAttachmentsShrink?: string; /** * @remarks * The name of the channel. Letters, digits, hyphens (-), and underscores (_) are supported. It can be up to 64 characters in length. * * This parameter is required. * * @example * mych */ name?: string; /** * @remarks * The output groups. * * This parameter is required. */ outputGroupsShrink?: string; /** * @remarks * The video settings. */ videoSettingsShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }