import * as $dara from '@darabonba/typescript'; export declare class GetAccessKeyLastUsedRequest extends $dara.Model { /** * @remarks * The ID of the AccessKey pair that you want to query. * * This parameter is required. * * @example * LTAI******************* */ userAccessKeyId?: string; /** * @remarks * The logon name of the RAM user. * * If you do not specify this parameter, the AccessKey pair of the current user is queried. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }