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

Information about the specified Amazon WorkSpaces clients.

*/ inline const Aws::Vector& GetClientPropertiesList() const{ return m_clientPropertiesList; } /** *

Information about the specified Amazon WorkSpaces clients.

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

Information about the specified Amazon WorkSpaces clients.

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

Information about the specified Amazon WorkSpaces clients.

*/ inline DescribeClientPropertiesResult& WithClientPropertiesList(const Aws::Vector& value) { SetClientPropertiesList(value); return *this;} /** *

Information about the specified Amazon WorkSpaces clients.

*/ inline DescribeClientPropertiesResult& WithClientPropertiesList(Aws::Vector&& value) { SetClientPropertiesList(std::move(value)); return *this;} /** *

Information about the specified Amazon WorkSpaces clients.

*/ inline DescribeClientPropertiesResult& AddClientPropertiesList(const ClientPropertiesResult& value) { m_clientPropertiesList.push_back(value); return *this; } /** *

Information about the specified Amazon WorkSpaces clients.

*/ inline DescribeClientPropertiesResult& AddClientPropertiesList(ClientPropertiesResult&& value) { m_clientPropertiesList.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 DescribeClientPropertiesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeClientPropertiesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeClientPropertiesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_clientPropertiesList; Aws::String m_requestId; }; } // namespace Model } // namespace WorkSpaces } // namespace Aws