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

DecryptResponse

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

§Properties

§
EncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]

The encryption algorithm that was used to decrypt the ciphertext.

§
KeyId?: string | null
[src]

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

§
Plaintext?: Uint8Array | null
[src]

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