/** * 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 AWS_ROUTE53_API GetCheckerIpRangesResult { public: GetCheckerIpRangesResult(); GetCheckerIpRangesResult(const Aws::AmazonWebServiceResult& result); 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; } private: Aws::Vector m_checkerIpRanges; }; } // namespace Model } // namespace Route53 } // namespace Aws