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

KeyPair

import type { KeyPair } from "https://aws-api.deno.dev/v0.4/services/ec2.ts?docs=full";

Describes a key pair.

interface KeyPair {
KeyFingerprint?: string | null;
KeyMaterial?: string | null;
KeyName?: string | null;
KeyPairId?: string | null;
Tags: Tag[];
}

§Properties

§
KeyFingerprint?: string | null
[src]
  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.
    • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
§
KeyMaterial?: string | null
[src]

An unencrypted PEM encoded RSA or ED25519 private key.

§
KeyName?: string | null
[src]

The name of the key pair.

§
KeyPairId?: string | null
[src]

The ID of the key pair.

§
Tags: Tag[]
[src]

Any tags applied to the key pair.