Struct rusoto_route53::GetGeoLocationRequest[][src]

pub struct GetGeoLocationRequest {
    pub continent_code: Option<String>,
    pub country_code: Option<String>,
    pub subdivision_code: Option<String>,
}

A request for information about whether a specified geographic location is supported for Amazon Route 53 geolocation resource record sets.

Fields

Amazon Route 53 supports the following continent codes:

  • AF: Africa

  • AN: Antarctica

  • AS: Asia

  • EU: Europe

  • OC: Oceania

  • NA: North America

  • SA: South America

Amazon Route 53 uses the two-letter country codes that are specified in ISO standard 3166-1 alpha-2.

Amazon Route 53 uses the one- to three-letter subdivision codes that are specified in ISO standard 3166-1 alpha-2. Amazon Route 53 doesn't support subdivision codes for all countries. If you specify SubdivisionCode, you must also specify CountryCode.

Trait Implementations

impl Default for GetGeoLocationRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for GetGeoLocationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetGeoLocationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetGeoLocationRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations