import * as $dara from '@darabonba/typescript'; export declare class CreateLogConfigRequest extends $dara.Model { /** * @remarks * Specifies to create a service-linked role. * * @example * true */ createSlr?: boolean; /** * @remarks * The log type. * * Valid values: * * * PROVIDER * * @example * PROVIDER */ logType?: string; securityToken?: string; /** * @remarks * slslogstore * * This parameter is required. * * @example * api-gateway */ slsLogStore?: string; /** * @remarks * The name of the Log Service project. * * This parameter is required. * * @example * rec-lq-sls */ slsProject?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }