ListGeoLocationsResponse

public struct ListGeoLocationsResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 supports for geolocation.

    Declaration

    Swift

    public let geoLocationDetailsList: [GeoLocationDetails]
  • A value that indicates whether more locations remain to be listed after the last location in this response. If so, the value of IsTruncated is true. To get more values, submit another request and include the values of NextContinentCode, NextCountryCode, and NextSubdivisionCode in the startcontinentcode, startcountrycode, and startsubdivisioncode, as applicable.

    Declaration

    Swift

    public let isTruncated: Bool
  • The value that you specified for MaxItems in the request.

    Declaration

    Swift

    public let maxItems: String
  • If IsTruncated is true, you can make a follow-up request to display more locations. Enter the value of NextContinentCode in the startcontinentcode parameter in another ListGeoLocations request.

    Declaration

    Swift

    public let nextContinentCode: String?
  • If IsTruncated is true, you can make a follow-up request to display more locations. Enter the value of NextCountryCode in the startcountrycode parameter in another ListGeoLocations request.

    Declaration

    Swift

    public let nextCountryCode: String?
  • If IsTruncated is true, you can make a follow-up request to display more locations. Enter the value of NextSubdivisionCode in the startsubdivisioncode parameter in another ListGeoLocations request.

    Declaration

    Swift

    public let nextSubdivisionCode: String?
  • Undocumented

    Declaration

    Swift

    public init(geoLocationDetailsList: [GeoLocationDetails], isTruncated: Bool, maxItems: String, nextContinentCode: String? = nil, nextCountryCode: String? = nil, nextSubdivisionCode: String? = nil)