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

ImportKeyPairResult

import type { ImportKeyPairResult } from "https://aws-api.deno.dev/v0.4/services/ec2.ts?docs=full";
interface ImportKeyPairResult {
KeyFingerprint?: string | null;
KeyName?: string | null;
KeyPairId?: string | null;
Tags: Tag[];
}

§Properties

§
KeyFingerprint?: string | null
[src]
  • For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.
    • 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.
§
KeyName?: string | null
[src]

The key pair name that you provided.

§
KeyPairId?: string | null
[src]

The ID of the resulting key pair.

§
Tags: Tag[]
[src]

The tags applied to the imported key pair.