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

The ARN of the AppinstanceBot.

*/ inline const Aws::String& GetAppInstanceBotArn() const{ return m_appInstanceBotArn; } /** *

The ARN of the AppinstanceBot.

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

The ARN of the AppinstanceBot.

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

The ARN of the AppinstanceBot.

*/ inline void SetAppInstanceBotArn(const char* value) { m_appInstanceBotArn.assign(value); } /** *

The ARN of the AppinstanceBot.

*/ inline CreateAppInstanceBotResult& WithAppInstanceBotArn(const Aws::String& value) { SetAppInstanceBotArn(value); return *this;} /** *

The ARN of the AppinstanceBot.

*/ inline CreateAppInstanceBotResult& WithAppInstanceBotArn(Aws::String&& value) { SetAppInstanceBotArn(std::move(value)); return *this;} /** *

The ARN of the AppinstanceBot.

*/ inline CreateAppInstanceBotResult& WithAppInstanceBotArn(const char* value) { SetAppInstanceBotArn(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 CreateAppInstanceBotResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateAppInstanceBotResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateAppInstanceBotResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_appInstanceBotArn; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws