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

Email

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

The email address associated with the user.

interface Email {
Primary?: boolean | null;
Type?: string | null;
Value?: string | null;
}

§Properties

§
Primary?: boolean | null
[src]

A Boolean value representing whether this is the primary email address for the associated resource.

§
Type?: string | null
[src]

A string representing the type of address. For example, "Work."

§
Value?: string | null
[src]

A string containing an email address. For example, "johndoe@amazon.com."