import * as $dara from '@darabonba/typescript'; export declare class UpdateMediaLiveInputSecurityGroupRequest extends $dara.Model { /** * @remarks * The name of the security group. Letters, digits, hyphens (-), and underscores (_) are supported. It can be up to 64 characters in length. * * This parameter is required. * * @example * mysg */ name?: string; /** * @remarks * The ID of the security group. * * This parameter is required. * * @example * SEGK5KA6KYKAWQQH */ securityGroupId?: string; /** * @remarks * The security group rules. * * This parameter is required. */ whitelistRules?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }