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

The information collected about your storage system's resources. A response * can also include Amazon Web Services storage service recommendations.

For * more information, see storage * resource information collected by and recommendations * provided by DataSync Discovery.

*/ inline const ResourceDetails& GetResourceDetails() const{ return m_resourceDetails; } /** *

The information collected about your storage system's resources. A response * can also include Amazon Web Services storage service recommendations.

For * more information, see storage * resource information collected by and recommendations * provided by DataSync Discovery.

*/ inline void SetResourceDetails(const ResourceDetails& value) { m_resourceDetails = value; } /** *

The information collected about your storage system's resources. A response * can also include Amazon Web Services storage service recommendations.

For * more information, see storage * resource information collected by and recommendations * provided by DataSync Discovery.

*/ inline void SetResourceDetails(ResourceDetails&& value) { m_resourceDetails = std::move(value); } /** *

The information collected about your storage system's resources. A response * can also include Amazon Web Services storage service recommendations.

For * more information, see storage * resource information collected by and recommendations * provided by DataSync Discovery.

*/ inline DescribeStorageSystemResourcesResult& WithResourceDetails(const ResourceDetails& value) { SetResourceDetails(value); return *this;} /** *

The information collected about your storage system's resources. A response * can also include Amazon Web Services storage service recommendations.

For * more information, see storage * resource information collected by and recommendations * provided by DataSync Discovery.

*/ inline DescribeStorageSystemResourcesResult& WithResourceDetails(ResourceDetails&& value) { SetResourceDetails(std::move(value)); return *this;} /** *

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

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

The opaque string that indicates the position to begin the next list of * results in the response.

*/ inline DescribeStorageSystemResourcesResult& WithNextToken(const char* value) { SetNextToken(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 DescribeStorageSystemResourcesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeStorageSystemResourcesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeStorageSystemResourcesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ResourceDetails m_resourceDetails; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace DataSync } // namespace Aws