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

UserProfile

import type { UserProfile } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Describes a user's SSH information.

interface UserProfile {
AllowSelfManagement?: boolean | null;
IamUserArn?: string | null;
Name?: string | null;
SshPublicKey?: string | null;
SshUsername?: string | null;
}

§Properties

§
AllowSelfManagement?: boolean | null
[src]

Whether users can specify their own SSH public key through the My Settings page. For more information, see Managing User Permissions.

§
IamUserArn?: string | null
[src]

The user's IAM ARN.

§
Name?: string | null
[src]

The user's name.

§
SshPublicKey?: string | null
[src]

The user's SSH public key.

§
SshUsername?: string | null
[src]

The user's SSH user name.