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

ReEncryptRequest

import type { ReEncryptRequest } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/kms.ts";
interface ReEncryptRequest {
CiphertextBlob: Uint8Array | string;
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | null;
DestinationEncryptionContext?: {
[key: string]: string | null | undefined;
}
| null;
DestinationKeyId: string;
GrantTokens?: string[] | null;
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | null;
SourceEncryptionContext?: {
[key: string]: string | null | undefined;
}
| null;
SourceKeyId?: string | null;
}

§Properties

§
CiphertextBlob: Uint8Array | string
[src]
§
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]
§
DestinationEncryptionContext?: {
[key: string]: string | null | undefined;
}
| null
[src]
§
DestinationKeyId: string
[src]
§
GrantTokens?: string[] | null
[src]
§
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | null
[src]
§
SourceEncryptionContext?: {
[key: string]: string | null | undefined;
}
| null
[src]
§
SourceKeyId?: string | null
[src]