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

GetParametersForImportResponse

import type { GetParametersForImportResponse } from "https://aws-api.deno.dev/v0.3/services/kms.ts?docs=full";
interface GetParametersForImportResponse {
ImportToken?: Uint8Array | null;
KeyId?: string | null;
ParametersValidTo?: Date | number | null;
PublicKey?: Uint8Array | null;
}

§Properties

§
ImportToken?: Uint8Array | null
[src]

The import token to send in a subsequent "ImportKeyMaterial" request.

§
KeyId?: string | null
[src]

The Amazon Resource Name (key ARN) of the KMS key to use in a subsequent "ImportKeyMaterial" request. This is the same KMS key specified in the GetParametersForImport request.

§
ParametersValidTo?: Date | number | null
[src]

The time at which the import token and public key are no longer valid. After this time, you cannot use them to make an "ImportKeyMaterial" request and you must send another GetParametersForImport request to get new ones.

§
PublicKey?: Uint8Array | null
[src]

The public key to use to encrypt the key material before importing it with "ImportKeyMaterial".