/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the response information for the specified
* geolocation code.See Also:
AWS
* API Reference
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