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

CreateUserRequest

import type { CreateUserRequest } from "https://aws-api.deno.dev/v0.4/services/appstream.ts?docs=full";
interface CreateUserRequest {
AuthenticationType: AuthenticationType;
FirstName?: string | null;
LastName?: string | null;
MessageAction?: MessageAction | null;
UserName: string;
}

§Properties

§
AuthenticationType: AuthenticationType
[src]

The authentication type for the user. You must specify USERPOOL.

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

§
MessageAction?: MessageAction | null
[src]

The action to take for the welcome email that is sent to a user after the user is created in the user pool. If you specify SUPPRESS, no email is sent. If you specify RESEND, do not specify the first name or last name of the user. If the value is null, the email is sent.

Note: The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.

§
UserName: string
[src]

The email address of the user.

Note: Users' email addresses are case-sensitive. During login, if they specify an email address that doesn't use the same capitalization as the email address specified when their user pool account was created, a "user does not exist" error message displays.