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/identitystore.ts?docs=full";
interface CreateUserRequest {
Addresses?: Address[] | null;
DisplayName?: string | null;
Emails?: Email[] | null;
IdentityStoreId: string;
Locale?: string | null;
Name?: Name | null;
NickName?: string | null;
PhoneNumbers?: PhoneNumber[] | null;
PreferredLanguage?: string | null;
ProfileUrl?: string | null;
Timezone?: string | null;
Title?: string | null;
UserName?: string | null;
UserType?: string | null;
}

§Properties

§
Addresses?: Address[] | null
[src]

A list of Address objects containing addresses associated with the user.

§
DisplayName?: string | null
[src]

A string containing the user's name. This value is typically formatted for display when the user is referenced. For example, "John Doe."

§
Emails?: Email[] | null
[src]

A list of Email objects containing email addresses associated with the user.

§
IdentityStoreId: string
[src]

The globally unique identifier for the identity store.

§
Locale?: string | null
[src]

A string containing the user's geographical region or location.

§
Name?: Name | null
[src]

An object containing the user's name.

§
NickName?: string | null
[src]

A string containing an alternate name for the user.

§
PhoneNumbers?: PhoneNumber[] | null
[src]

A list of PhoneNumber objects containing phone numbers associated with the user.

§
PreferredLanguage?: string | null
[src]

A string containing the preferred language of the user. For example, "American English" or "en-us."

§
ProfileUrl?: string | null
[src]

A string containing a URL that may be associated with the user.

§
Timezone?: string | null
[src]

A string containing the user's time zone.

§
Title?: string | null
[src]

A string containing the user's title. Possible values are left unspecified given that they depend on each customer's specific needs.

§
UserName?: string | null
[src]

A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.

§
UserType?: string | null
[src]

A string indicating the user's type. Possible values depend on each customer's specific needs, so they are left unspecified.