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

GeoLocationDetails

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

A complex type that contains the codes and full continent, country, and subdivision names for the specified geolocation code.

interface GeoLocationDetails {
ContinentCode?: string | null;
ContinentName?: string | null;
CountryCode?: string | null;
CountryName?: string | null;
SubdivisionCode?: string | null;
SubdivisionName?: string | null;
}

§Properties

§
ContinentCode?: string | null
[src]

The two-letter code for the continent.

§
ContinentName?: string | null
[src]

The full name of the continent.

§
CountryCode?: string | null
[src]

The two-letter code for the country.

§
CountryName?: string | null
[src]

The name of the country.

§
SubdivisionCode?: string | null
[src]

The code for the subdivision, such as a particular state within the United States. For a list of US state abbreviations, see Appendix B: Two–Letter State and Possession Abbreviations on the United States Postal Service website. For a list of all supported subdivision codes, use the ListGeoLocations API.

§
SubdivisionName?: string | null
[src]

The full name of the subdivision. Route 53 currently supports only states in the United States.