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

The unique identifier of the bot that Amazon Lex is deleting.

*/ inline const Aws::String& GetBotId() const{ return m_botId; } /** *

The unique identifier of the bot that Amazon Lex is deleting.

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

The unique identifier of the bot that Amazon Lex is deleting.

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

The unique identifier of the bot that Amazon Lex is deleting.

*/ inline void SetBotId(const char* value) { m_botId.assign(value); } /** *

The unique identifier of the bot that Amazon Lex is deleting.

*/ inline DeleteBotResult& WithBotId(const Aws::String& value) { SetBotId(value); return *this;} /** *

The unique identifier of the bot that Amazon Lex is deleting.

*/ inline DeleteBotResult& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;} /** *

The unique identifier of the bot that Amazon Lex is deleting.

*/ inline DeleteBotResult& WithBotId(const char* value) { SetBotId(value); return *this;} /** *

The current status of the bot. The status is Deleting while the * bot and its associated resources are being deleted.

*/ inline const BotStatus& GetBotStatus() const{ return m_botStatus; } /** *

The current status of the bot. The status is Deleting while the * bot and its associated resources are being deleted.

*/ inline void SetBotStatus(const BotStatus& value) { m_botStatus = value; } /** *

The current status of the bot. The status is Deleting while the * bot and its associated resources are being deleted.

*/ inline void SetBotStatus(BotStatus&& value) { m_botStatus = std::move(value); } /** *

The current status of the bot. The status is Deleting while the * bot and its associated resources are being deleted.

*/ inline DeleteBotResult& WithBotStatus(const BotStatus& value) { SetBotStatus(value); return *this;} /** *

The current status of the bot. The status is Deleting while the * bot and its associated resources are being deleted.

*/ inline DeleteBotResult& WithBotStatus(BotStatus&& value) { SetBotStatus(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 DeleteBotResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteBotResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteBotResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_botId; BotStatus m_botStatus; Aws::String m_requestId; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws