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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

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

To list more IPSet objects, submit another * ListIPSets request, and in the next request use the * NextMarker response value as the NextMarker value.

*/ inline ListIPSetsResult& WithNextMarker(const char* value) { SetNextMarker(value); return *this;} /** *

An array of IPSetSummary objects.

*/ inline const Aws::Vector& GetIPSets() const{ return m_iPSets; } /** *

An array of IPSetSummary objects.

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

An array of IPSetSummary objects.

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

An array of IPSetSummary objects.

*/ inline ListIPSetsResult& WithIPSets(const Aws::Vector& value) { SetIPSets(value); return *this;} /** *

An array of IPSetSummary objects.

*/ inline ListIPSetsResult& WithIPSets(Aws::Vector&& value) { SetIPSets(std::move(value)); return *this;} /** *

An array of IPSetSummary objects.

*/ inline ListIPSetsResult& AddIPSets(const IPSetSummary& value) { m_iPSets.push_back(value); return *this; } /** *

An array of IPSetSummary objects.

*/ inline ListIPSetsResult& AddIPSets(IPSetSummary&& value) { m_iPSets.push_back(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 ListIPSetsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListIPSetsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListIPSetsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextMarker; Aws::Vector m_iPSets; Aws::String m_requestId; }; } // namespace Model } // namespace WAF } // namespace Aws