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

The client add-in identifier.

*/ inline const Aws::String& GetAddInId() const{ return m_addInId; } /** *

The client add-in identifier.

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

The client add-in identifier.

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

The client add-in identifier.

*/ inline void SetAddInId(const char* value) { m_addInId.assign(value); } /** *

The client add-in identifier.

*/ inline CreateConnectClientAddInResult& WithAddInId(const Aws::String& value) { SetAddInId(value); return *this;} /** *

The client add-in identifier.

*/ inline CreateConnectClientAddInResult& WithAddInId(Aws::String&& value) { SetAddInId(std::move(value)); return *this;} /** *

The client add-in identifier.

*/ inline CreateConnectClientAddInResult& WithAddInId(const char* value) { SetAddInId(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 CreateConnectClientAddInResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateConnectClientAddInResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateConnectClientAddInResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_addInId; Aws::String m_requestId; }; } // namespace Model } // namespace WorkSpaces } // namespace Aws