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

SSHPublicKey

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

Contains information about an SSH public key.

This data type is used as a response element in the "GetSSHPublicKey" and "UploadSSHPublicKey" operations.

interface SSHPublicKey {
Fingerprint: string;
SSHPublicKeyBody: string;
SSHPublicKeyId: string;
Status: statusType;
UploadDate?: Date | number | null;
UserName: string;
}

§Properties

§
Fingerprint: string
[src]

The MD5 message digest of the SSH public key.

§
SSHPublicKeyBody: string
[src]

The SSH public key.

§
SSHPublicKeyId: string
[src]

The unique identifier for the SSH public key.

§

The status of the SSH public key. Active means that the key can be used for authentication with an CodeCommit repository. Inactive means that the key cannot be used.

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

The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.

§
UserName: string
[src]

The name of the IAM user associated with the SSH public key.