Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GenerateDataKeyResponse

import type { GenerateDataKeyResponse } from "https://aws-api.deno.dev/v0.3/services/kms.ts?docs=full";
interface GenerateDataKeyResponse {
CiphertextBlob?: Uint8Array | null;
KeyId?: string | null;
Plaintext?: Uint8Array | null;
}

§Properties

§
CiphertextBlob?: Uint8Array | null
[src]

The encrypted copy of the data key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

§
KeyId?: string | null
[src]

The Amazon Resource Name (key ARN) of the KMS key that encrypted the data key.

§
Plaintext?: Uint8Array | null
[src]

The plaintext data key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded. Use this data key to encrypt your data outside of KMS. Then, remove it from memory as soon as possible.