/** * 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 WAFV2 { namespace Model { class ListMobileSdkReleasesResult { public: AWS_WAFV2_API ListMobileSdkReleasesResult(); AWS_WAFV2_API ListMobileSdkReleasesResult(const Aws::AmazonWebServiceResult& result); AWS_WAFV2_API ListMobileSdkReleasesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

*/ inline const Aws::Vector& GetReleaseSummaries() const{ return m_releaseSummaries; } /** *

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

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

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

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

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

*/ inline ListMobileSdkReleasesResult& WithReleaseSummaries(const Aws::Vector& value) { SetReleaseSummaries(value); return *this;} /** *

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

*/ inline ListMobileSdkReleasesResult& WithReleaseSummaries(Aws::Vector&& value) { SetReleaseSummaries(std::move(value)); return *this;} /** *

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

*/ inline ListMobileSdkReleasesResult& AddReleaseSummaries(const ReleaseSummary& value) { m_releaseSummaries.push_back(value); return *this; } /** *

The high level information for the available SDK releases. If you specified a * Limit in your request, this might not be the full list.

*/ inline ListMobileSdkReleasesResult& AddReleaseSummaries(ReleaseSummary&& value) { m_releaseSummaries.push_back(std::move(value)); return *this; } /** *

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

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

When you request a list of objects with a Limit setting, if the * number of objects that are still available for retrieval exceeds the limit, WAF * returns a NextMarker value in the response. To retrieve the next * batch of objects, provide the marker from the prior call in your next * request.

*/ inline ListMobileSdkReleasesResult& WithNextMarker(const char* value) { SetNextMarker(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 ListMobileSdkReleasesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListMobileSdkReleasesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListMobileSdkReleasesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_releaseSummaries; Aws::String m_nextMarker; Aws::String m_requestId; }; } // namespace Model } // namespace WAFV2 } // namespace Aws