/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ChimeSDKIdentity { namespace Model { /** */ class DescribeAppInstanceBotRequest : public ChimeSDKIdentityRequest { public: AWS_CHIMESDKIDENTITY_API DescribeAppInstanceBotRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeAppInstanceBot"; } AWS_CHIMESDKIDENTITY_API Aws::String SerializePayload() const override; /** *

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

*/ inline bool AppInstanceBotArnHasBeenSet() const { return m_appInstanceBotArnHasBeenSet; } /** *

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

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

The ARN of the AppInstanceBot.

*/ inline DescribeAppInstanceBotRequest& WithAppInstanceBotArn(const char* value) { SetAppInstanceBotArn(value); return *this;} private: Aws::String m_appInstanceBotArn; bool m_appInstanceBotArnHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws