/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 CheckerIpRanges * element.

See Also:

AWS * API Reference

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

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline const Aws::Vector& GetCheckerIpRanges() const{ return m_checkerIpRanges; } /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline void SetCheckerIpRanges(const Aws::Vector& value) { m_checkerIpRanges = value; } /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline void SetCheckerIpRanges(Aws::Vector&& value) { m_checkerIpRanges = std::move(value); } /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline GetCheckerIpRangesResult& WithCheckerIpRanges(const Aws::Vector& value) { SetCheckerIpRanges(value); return *this;} /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline GetCheckerIpRangesResult& WithCheckerIpRanges(Aws::Vector&& value) { SetCheckerIpRanges(std::move(value)); return *this;} /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline GetCheckerIpRangesResult& AddCheckerIpRanges(const Aws::String& value) { m_checkerIpRanges.push_back(value); return *this; } /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline GetCheckerIpRangesResult& AddCheckerIpRanges(Aws::String&& value) { m_checkerIpRanges.push_back(std::move(value)); return *this; } /** *

A complex type that contains sorted list of IP ranges in CIDR format for * Amazon Route 53 health checkers.

*/ inline GetCheckerIpRangesResult& AddCheckerIpRanges(const char* value) { m_checkerIpRanges.push_back(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 GetCheckerIpRangesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetCheckerIpRangesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetCheckerIpRangesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_checkerIpRanges; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws