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.3/services/connect.ts?docs=full";

Contains information about a user account for a Amazon Connect instance.

interface User {
Arn?: string | null;
DirectoryUserId?: string | null;
HierarchyGroupId?: string | null;
Id?: string | null;
IdentityInfo?: UserIdentityInfo | null;
PhoneConfig?: UserPhoneConfig | null;
RoutingProfileId?: string | null;
SecurityProfileIds?: string[] | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Username?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) of the user account.

§
DirectoryUserId?: string | null
[src]

The identifier of the user account in the directory used for identity management.

§
HierarchyGroupId?: string | null
[src]

The identifier of the hierarchy group for the user.

§
Id?: string | null
[src]

The identifier of the user account.

§
IdentityInfo?: UserIdentityInfo | null
[src]

Information about the user identity.

§
PhoneConfig?: UserPhoneConfig | null
[src]

Information about the phone configuration for the user.

§
RoutingProfileId?: string | null
[src]

The identifier of the routing profile for the user.

§
SecurityProfileIds?: string[] | null
[src]

The identifiers of the security profiles for the user.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags.

§
Username?: string | null
[src]

The user name assigned to the user account.