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

ContactInformation

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

Contains the details of the primary contact information associated with an Amazon Web Services account.

interface ContactInformation {
AddressLine1: string;
AddressLine2?: string | null;
AddressLine3?: string | null;
City: string;
CompanyName?: string | null;
CountryCode: string;
DistrictOrCounty?: string | null;
FullName: string;
PhoneNumber: string;
PostalCode: string;
StateOrRegion?: string | null;
WebsiteUrl?: string | null;
}

§Properties

§
AddressLine1: string
[src]

The first line of the primary contact address.

§
AddressLine2?: string | null
[src]

The second line of the primary contact address, if any.

§
AddressLine3?: string | null
[src]

The third line of the primary contact address, if any.

§
City: string
[src]

The city of the primary contact address.

§
CompanyName?: string | null
[src]

The name of the company associated with the primary contact information, if any.

§
CountryCode: string
[src]

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

§
DistrictOrCounty?: string | null
[src]

The district or county of the primary contact address, if any.

§
FullName: string
[src]

The full name of the primary contact address.

§
PhoneNumber: string
[src]

The phone number of the primary contact information. The number will be validated and, in some countries, checked for activation.

§
PostalCode: string
[src]

The postal code of the primary contact address.

§
StateOrRegion?: string | null
[src]

The state or region of the primary contact address. This field is required in selected countries.

§
WebsiteUrl?: string | null
[src]

The URL of the website associated with the primary contact information, if any.