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

Information about an address.

interface Address {
AddressLine1: string;
AddressLine2?: string | null;
AddressLine3?: string | null;
City: string;
ContactName?: string | null;
ContactPhoneNumber?: string | null;
CountryCode: string;
DistrictOrCounty?: string | null;
Municipality?: string | null;
PostalCode: string;
StateOrRegion: string;
}

§Properties

§
AddressLine1: string
[src]

The first line of the address.

§
AddressLine2?: string | null
[src]

The second line of the address.

§
AddressLine3?: string | null
[src]

The third line of the address.

§
City: string
[src]

The city for the address.

§
ContactName?: string | null
[src]

The name of the contact.

§
ContactPhoneNumber?: string | null
[src]

The phone number of the contact.

§
CountryCode: string
[src]

The ISO-3166 two-letter country code for the address.

§
DistrictOrCounty?: string | null
[src]

The district or county for the address.

§
Municipality?: string | null
[src]

The municipality for the address.

§
PostalCode: string
[src]

The postal code for the address.

§
StateOrRegion: string
[src]

The state for the address.