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

User

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

Describes a user in the user pool.

interface User {
Arn?: string | null;
AuthenticationType: AuthenticationType;
CreatedTime?: Date | number | null;
Enabled?: boolean | null;
FirstName?: string | null;
LastName?: string | null;
Status?: string | null;
UserName?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the user.

§
AuthenticationType: AuthenticationType
[src]

The authentication type for the user.

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

The date and time the user was created in the user pool.

§
Enabled?: boolean | null
[src]

Specifies whether the user in the user pool is enabled.

§
FirstName?: string | null
[src]

The first name, or given name, of the user.

§
LastName?: string | null
[src]

The last name, or surname, of the user.

§
Status?: string | null
[src]

The status of the user in the user pool. The status can be one of the following:

  • UNCONFIRMED – The user is created but not confirmed.
  • CONFIRMED – The user is confirmed.
  • ARCHIVED – The user is no longer active.
  • COMPROMISED – The user is disabled because of a potential security threat.
  • UNKNOWN – The user status is not known.
§
UserName?: string | null
[src]

The email address of the user.

Note: Users' email addresses are case-sensitive.