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

The address that you want the Snow device(s) associated with a specific job to be shipped to. Addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. Although no individual elements of the Address are required, if the address is invalid or unsupported, then an exception is thrown.

interface Address {
AddressId?: string | null;
City?: string | null;
Company?: string | null;
Country?: string | null;
IsRestricted?: boolean | null;
Landmark?: string | null;
Name?: string | null;
PhoneNumber?: string | null;
PostalCode?: string | null;
PrefectureOrDistrict?: string | null;
StateOrProvince?: string | null;
Street1?: string | null;
Street2?: string | null;
Street3?: string | null;
}

§Properties

§
AddressId?: string | null
[src]

The unique ID for an address.

§
City?: string | null
[src]

The city in an address that a Snow device is to be delivered to.

§
Company?: string | null
[src]

The name of the company to receive a Snow device at an address.

§
Country?: string | null
[src]

The country in an address that a Snow device is to be delivered to.

§
IsRestricted?: boolean | null
[src]

If the address you are creating is a primary address, then set this option to true. This field is not supported in most regions.

§
Landmark?: string | null
[src]

This field is no longer used and the value is ignored.

§
Name?: string | null
[src]

The name of a person to receive a Snow device at an address.

§
PhoneNumber?: string | null
[src]

The phone number associated with an address that a Snow device is to be delivered to.

§
PostalCode?: string | null
[src]

The postal code in an address that a Snow device is to be delivered to.

§
PrefectureOrDistrict?: string | null
[src]

This field is no longer used and the value is ignored.

§
StateOrProvince?: string | null
[src]

The state or province in an address that a Snow device is to be delivered to.

§
Street1?: string | null
[src]

The first line in a street address that a Snow device is to be delivered to.

§
Street2?: string | null
[src]

The second line in a street address that a Snow device is to be delivered to.

§
Street3?: string | null
[src]

The third line in a street address that a Snow device is to be delivered to.