import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.iam.v1.awscompatibility"; /** * An access key. * For more information, see [AWS-compatible access keys](/docs/iam/concepts/authorization/access-key). */ export interface AccessKey { /** * ID of the AccessKey resource. * It is used to manage secret credentials: an access key ID and a secret access key. */ id: string; /** ID of the service account that the access key belongs to. */ serviceAccountId: string; /** Creation timestamp. */ createdAt?: Date; /** Description of the access key. 0-256 characters long. */ description: string; /** * ID of the access key. * The key is AWS compatible. */ keyId: string; /** Timestamp for the last authentication using this Access key. */ lastUsedAt?: Date; } export declare const AccessKey: { encode(message: AccessKey, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): AccessKey; fromJSON(object: any): AccessKey; toJSON(message: AccessKey): unknown; fromPartial, never>>(object: I): AccessKey; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};