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

SSHPublicKeyMetadata

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

Contains information about an SSH public key, without the key's body or fingerprint.

This data type is used as a response element in the "ListSSHPublicKeys" operation.

interface SSHPublicKeyMetadata {
SSHPublicKeyId: string;
Status: statusType;
UploadDate: Date | number;
UserName: string;
}

§Properties

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