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

GenerateDataKeyPairResponse

import type { GenerateDataKeyPairResponse } from "https://aws-api.deno.dev/v0.3/services/kms.ts?docs=full";
interface GenerateDataKeyPairResponse {
KeyId?: string | null;
KeyPairSpec?: DataKeyPairSpec | null;
PrivateKeyCiphertextBlob?: Uint8Array | null;
PrivateKeyPlaintext?: Uint8Array | null;
PublicKey?: Uint8Array | null;
}

§Properties

§
KeyId?: string | null
[src]

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

§
KeyPairSpec?: DataKeyPairSpec | null
[src]

The type of data key pair that was generated.

§
PrivateKeyCiphertextBlob?: Uint8Array | null
[src]

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

§
PrivateKeyPlaintext?: Uint8Array | null
[src]

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

§
PublicKey?: Uint8Array | null
[src]

The public key (in plaintext).