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

EncryptResponse

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

§Properties

§
CiphertextBlob?: Uint8Array | null
[src]

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

§
EncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]

The encryption algorithm that was used to encrypt the plaintext.

§
KeyId?: string | null
[src]

The Amazon Resource Name (key ARN) of the KMS key that was used to encrypt the plaintext.