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

The token for the next set of results, or null if there are no more * results.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token for the next set of results, or null if there are no more * results.

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

The token for the next set of results, or null if there are no more * results.

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

The token for the next set of results, or null if there are no more * results.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token for the next set of results, or null if there are no more * results.

*/ inline ListUnsupportedAppVersionResourcesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token for the next set of results, or null if there are no more * results.

*/ inline ListUnsupportedAppVersionResourcesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token for the next set of results, or null if there are no more * results.

*/ inline ListUnsupportedAppVersionResourcesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The identifier for a specific resolution.

*/ inline const Aws::String& GetResolutionId() const{ return m_resolutionId; } /** *

The identifier for a specific resolution.

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

The identifier for a specific resolution.

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

The identifier for a specific resolution.

*/ inline void SetResolutionId(const char* value) { m_resolutionId.assign(value); } /** *

The identifier for a specific resolution.

*/ inline ListUnsupportedAppVersionResourcesResult& WithResolutionId(const Aws::String& value) { SetResolutionId(value); return *this;} /** *

The identifier for a specific resolution.

*/ inline ListUnsupportedAppVersionResourcesResult& WithResolutionId(Aws::String&& value) { SetResolutionId(std::move(value)); return *this;} /** *

The identifier for a specific resolution.

*/ inline ListUnsupportedAppVersionResourcesResult& WithResolutionId(const char* value) { SetResolutionId(value); return *this;} /** *

The unsupported resources for the application.

*/ inline const Aws::Vector& GetUnsupportedResources() const{ return m_unsupportedResources; } /** *

The unsupported resources for the application.

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

The unsupported resources for the application.

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

The unsupported resources for the application.

*/ inline ListUnsupportedAppVersionResourcesResult& WithUnsupportedResources(const Aws::Vector& value) { SetUnsupportedResources(value); return *this;} /** *

The unsupported resources for the application.

*/ inline ListUnsupportedAppVersionResourcesResult& WithUnsupportedResources(Aws::Vector&& value) { SetUnsupportedResources(std::move(value)); return *this;} /** *

The unsupported resources for the application.

*/ inline ListUnsupportedAppVersionResourcesResult& AddUnsupportedResources(const UnsupportedResource& value) { m_unsupportedResources.push_back(value); return *this; } /** *

The unsupported resources for the application.

*/ inline ListUnsupportedAppVersionResourcesResult& AddUnsupportedResources(UnsupportedResource&& value) { m_unsupportedResources.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 ListUnsupportedAppVersionResourcesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListUnsupportedAppVersionResourcesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListUnsupportedAppVersionResourcesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::String m_resolutionId; Aws::Vector m_unsupportedResources; Aws::String m_requestId; }; } // namespace Model } // namespace ResilienceHub } // namespace Aws