/** * 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 ListRegexMatchSetsResult { public: AWS_WAF_API ListRegexMatchSetsResult(); AWS_WAF_API ListRegexMatchSetsResult(const Aws::AmazonWebServiceResult& result); AWS_WAF_API ListRegexMatchSetsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

If you have more RegexMatchSet objects than the number that you * specified for Limit in the request, the response includes a * NextMarker value. To list more RegexMatchSet objects, * submit another ListRegexMatchSets request, and specify the * NextMarker value from the response in the NextMarker * value in the next request.

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

An array of RegexMatchSetSummary objects.

*/ inline const Aws::Vector& GetRegexMatchSets() const{ return m_regexMatchSets; } /** *

An array of RegexMatchSetSummary objects.

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

An array of RegexMatchSetSummary objects.

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

An array of RegexMatchSetSummary objects.

*/ inline ListRegexMatchSetsResult& WithRegexMatchSets(const Aws::Vector& value) { SetRegexMatchSets(value); return *this;} /** *

An array of RegexMatchSetSummary objects.

*/ inline ListRegexMatchSetsResult& WithRegexMatchSets(Aws::Vector&& value) { SetRegexMatchSets(std::move(value)); return *this;} /** *

An array of RegexMatchSetSummary objects.

*/ inline ListRegexMatchSetsResult& AddRegexMatchSets(const RegexMatchSetSummary& value) { m_regexMatchSets.push_back(value); return *this; } /** *

An array of RegexMatchSetSummary objects.

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