import * as $dara from '@darabonba/typescript'; export declare class GetAccessKeyLastUsedResponseBodyAccessKeyLastUsed extends $dara.Model { /** * @remarks * The time when the AccessKey pair was used for the last time. * * @example * 2020-10-21T06:37:40Z */ lastUsedDate?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetAccessKeyLastUsedResponseBody extends $dara.Model { /** * @remarks * The details of the time when the AccessKey pair was used for the last time. */ accessKeyLastUsed?: GetAccessKeyLastUsedResponseBodyAccessKeyLastUsed; /** * @remarks * The request ID. * * @example * 5CCE804C-6450-49A7-B1DB-2460F7A97416 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }