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.3/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]

The SHA-1 digest of the DER encoded private key.

§
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.