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

EndpointUser

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

Specifies data for one or more attributes that describe the user who's associated with an endpoint.

interface EndpointUser {
UserAttributes?: {
[key: string]: string[] | null | undefined;
}
| null;
UserId?: string | null;
}

§Properties

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

One or more custom attributes that describe the user by associating a name with an array of values. For example, the value of an attribute named Interests might be: ["Science", "Music", "Travel"]. You can use these attributes as filter criteria when you create segments. Attribute names are case sensitive.

An attribute name can contain up to 50 characters. An attribute value can contain up to 100 characters. When you define the name of a custom attribute, avoid using the following characters: number sign (#), colon (:), question mark (?), backslash (), and slash (/). The Amazon Pinpoint console can't display attribute names that contain these characters. This restriction doesn't apply to attribute values.

§
UserId?: string | null
[src]

The unique identifier for the user.