/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace ElasticLoadBalancingv2 { namespace Model { class DescribeAccountLimitsResult { public: AWS_ELASTICLOADBALANCINGV2_API DescribeAccountLimitsResult(); AWS_ELASTICLOADBALANCINGV2_API DescribeAccountLimitsResult(const Aws::AmazonWebServiceResult& result); AWS_ELASTICLOADBALANCINGV2_API DescribeAccountLimitsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the limits.

*/ inline const Aws::Vector& GetLimits() const{ return m_limits; } /** *

Information about the limits.

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

Information about the limits.

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

Information about the limits.

*/ inline DescribeAccountLimitsResult& WithLimits(const Aws::Vector& value) { SetLimits(value); return *this;} /** *

Information about the limits.

*/ inline DescribeAccountLimitsResult& WithLimits(Aws::Vector&& value) { SetLimits(std::move(value)); return *this;} /** *

Information about the limits.

*/ inline DescribeAccountLimitsResult& AddLimits(const Limit& value) { m_limits.push_back(value); return *this; } /** *

Information about the limits.

*/ inline DescribeAccountLimitsResult& AddLimits(Limit&& value) { m_limits.push_back(std::move(value)); return *this; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline const Aws::String& GetNextMarker() const{ return m_nextMarker; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(const Aws::String& value) { m_nextMarker = value; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(Aws::String&& value) { m_nextMarker = std::move(value); } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(const char* value) { m_nextMarker.assign(value); } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeAccountLimitsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeAccountLimitsResult& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeAccountLimitsResult& WithNextMarker(const char* value) { SetNextMarker(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DescribeAccountLimitsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeAccountLimitsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_limits; Aws::String m_nextMarker; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace ElasticLoadBalancingv2 } // namespace Aws