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

ReEncryptResponse

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

§Properties

§
CiphertextBlob?: Uint8Array | null
[src]

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

§
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]

The encryption algorithm that was used to reencrypt the data.

§
KeyId?: string | null
[src]

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

§
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]

The encryption algorithm that was used to decrypt the ciphertext before it was reencrypted.

§
SourceKeyId?: string | null
[src]

Unique identifier of the KMS key used to originally encrypt the data.