/** *

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

*/ export interface _GeoLocationDetails { /** *

The two-letter code for the continent.

*/ ContinentCode?: string; /** *

The full name of the continent.

*/ ContinentName?: string; /** *

The two-letter code for the country.

*/ CountryCode?: string; /** *

The name of the country.

*/ CountryName?: string; /** *

The code for the subdivision. Route 53 currently supports only states in the United States.

*/ SubdivisionCode?: string; /** *

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

*/ SubdivisionName?: string; } export declare type _UnmarshalledGeoLocationDetails = _GeoLocationDetails;