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

Address

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

The address associated with the specified user.

interface Address {
Country?: string | null;
Formatted?: string | null;
Locality?: string | null;
PostalCode?: string | null;
Primary?: boolean | null;
Region?: string | null;
StreetAddress?: string | null;
Type?: string | null;
}

§Properties

§
Country?: string | null
[src]

The country of the address.

§
Formatted?: string | null
[src]

A string containing a formatted version of the address for display.

§
Locality?: string | null
[src]

A string of the address locality.

§
PostalCode?: string | null
[src]

The postal code of the address.

§
Primary?: boolean | null
[src]

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

§
Region?: string | null
[src]

The region of the address.

§
StreetAddress?: string | null
[src]

The street of the address.

§
Type?: string | null
[src]

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