/** *
A complex type that contains information about a geographic location.
*/ export interface _GeoLocation { /** *The two-letter code for the continent.
Valid values: AF | AN | AS | EU | OC | NA | SA
Constraint: Specifying ContinentCode with either CountryCode or SubdivisionCode returns an InvalidInput error.
The two-letter code for the country.
*/ CountryCode?: string; /** *The code for the subdivision. Route 53 currently supports only states in the United States.
*/ SubdivisionCode?: string; } export declare type _UnmarshalledGeoLocation = _GeoLocation;