/**
* 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetGeoLocationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetGeoLocationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetGeoLocationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: GeoLocationDetails m_geoLocationDetails; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws