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

CreateKeyPairResult

import type { CreateKeyPairResult } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";
interface CreateKeyPairResult {
keyPair?: KeyPair | null;
operation?: Operation | null;
privateKeyBase64?: string | null;
publicKeyBase64?: string | null;
}

§Properties

§
keyPair?: KeyPair | null
[src]

An array of key-value pairs containing information about the new key pair you just created.

§
operation?: Operation | null
[src]

An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.

§
privateKeyBase64?: string | null
[src]

A base64-encoded RSA private key.

§
publicKeyBase64?: string | null
[src]

A base64-encoded public key of the ssh-rsa type.