This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-route53/include/aws/route53/model/GetGeoLocationResult.h

79 lines
2.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53/Route53_EXPORTS.h>
#include <aws/route53/model/GeoLocationDetails.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace Route53
{
namespace Model
{
/**
* <p>A complex type that contains the response information for the specified
* geolocation code.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocationResponse">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53_API GetGeoLocationResult
{
public:
GetGeoLocationResult();
GetGeoLocationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
GetGeoLocationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>A complex type that contains the codes and full continent, country, and
* subdivision names for the specified geolocation code.</p>
*/
inline const GeoLocationDetails& GetGeoLocationDetails() const{ return m_geoLocationDetails; }
/**
* <p>A complex type that contains the codes and full continent, country, and
* subdivision names for the specified geolocation code.</p>
*/
inline void SetGeoLocationDetails(const GeoLocationDetails& value) { m_geoLocationDetails = value; }
/**
* <p>A complex type that contains the codes and full continent, country, and
* subdivision names for the specified geolocation code.</p>
*/
inline void SetGeoLocationDetails(GeoLocationDetails&& value) { m_geoLocationDetails = std::move(value); }
/**
* <p>A complex type that contains the codes and full continent, country, and
* subdivision names for the specified geolocation code.</p>
*/
inline GetGeoLocationResult& WithGeoLocationDetails(const GeoLocationDetails& value) { SetGeoLocationDetails(value); return *this;}
/**
* <p>A complex type that contains the codes and full continent, country, and
* subdivision names for the specified geolocation code.</p>
*/
inline GetGeoLocationResult& WithGeoLocationDetails(GeoLocationDetails&& value) { SetGeoLocationDetails(std::move(value)); return *this;}
private:
GeoLocationDetails m_geoLocationDetails;
};
} // namespace Model
} // namespace Route53
} // namespace Aws