/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Route53 { namespace Model { /** *

A complex type that contains the response information for the specified * geolocation code.

See Also:

AWS * API Reference

*/ class AWS_ROUTE53_API GetGeoLocationResult { public: GetGeoLocationResult(); GetGeoLocationResult(const Aws::AmazonWebServiceResult& result); GetGeoLocationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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

*/ inline const GeoLocationDetails& GetGeoLocationDetails() const{ return m_geoLocationDetails; } /** *

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

*/ inline void SetGeoLocationDetails(const GeoLocationDetails& value) { m_geoLocationDetails = value; } /** *

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

*/ inline void SetGeoLocationDetails(GeoLocationDetails&& value) { m_geoLocationDetails = std::move(value); } /** *

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

*/ inline GetGeoLocationResult& WithGeoLocationDetails(const GeoLocationDetails& value) { SetGeoLocationDetails(value); return *this;} /** *

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

*/ inline GetGeoLocationResult& WithGeoLocationDetails(GeoLocationDetails&& value) { SetGeoLocationDetails(std::move(value)); return *this;} private: GeoLocationDetails m_geoLocationDetails; }; } // namespace Model } // namespace Route53 } // namespace Aws