Module Values.GeoLocationDetailsSource

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

Sourcetype nonrec t = {
  1. continentCode : GeoLocationContinentCode.t option;
    (*

    The two-letter code for the continent.

    *)
  2. continentName : GeoLocationContinentName.t option;
    (*

    The full name of the continent.

    *)
  3. countryCode : GeoLocationCountryCode.t option;
    (*

    The two-letter code for the country.

    *)
  4. countryName : GeoLocationCountryName.t option;
    (*

    The name of the country.

    *)
  5. subdivisionCode : GeoLocationSubdivisionCode.t option;
    (*

    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.

    *)
  6. subdivisionName : GeoLocationSubdivisionName.t option;
    (*

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

    *)
}
Sourceval make : ?continentCode:??? -> ?continentName:??? -> ?countryCode:??? -> ?countryName:??? -> ?subdivisionCode:??? -> ?subdivisionName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GeoLocationContinentCode.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t