import * as $dara from '@darabonba/typescript'; export declare class DecryptKMSDataKeyResponseBodyDataKey extends $dara.Model { /** * @remarks * The ID of the customer master key (CMK) that was used to decrypt the ciphertext. * * @example * 202b9877-5a25-46e3-a763-e20791b5**** */ keyId?: string; /** * @remarks * The plaintext that is generated after decryption. * * @example * tRYXuCwgja12xxO1N/gZERDDCLw9doZEQiPDk/Bv**** */ plaintext?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DecryptKMSDataKeyResponseBody extends $dara.Model { /** * @remarks * The information about the decryption result. */ dataKey?: DecryptKMSDataKeyResponseBodyDataKey; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }