/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/lexv2-models/LexModelsV2_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/lexv2-models/model/DialogCodeHookSettings.h> #include <aws/lexv2-models/model/FulfillmentCodeHookSettings.h> #include <aws/lexv2-models/model/IntentConfirmationSetting.h> #include <aws/lexv2-models/model/IntentClosingSetting.h> #include <aws/lexv2-models/model/KendraConfiguration.h> #include <aws/core/utils/DateTime.h> #include <aws/lexv2-models/model/InitialResponseSetting.h> #include <aws/lexv2-models/model/SampleUtterance.h> #include <aws/lexv2-models/model/SlotPriority.h> #include <aws/lexv2-models/model/InputContext.h> #include <aws/lexv2-models/model/OutputContext.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace LexModelsV2 { namespace Model { class UpdateIntentResult { public: AWS_LEXMODELSV2_API UpdateIntentResult(); AWS_LEXMODELSV2_API UpdateIntentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_LEXMODELSV2_API UpdateIntentResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The identifier of the intent that was updated.</p> */ inline const Aws::String& GetIntentId() const{ return m_intentId; } /** * <p>The identifier of the intent that was updated.</p> */ inline void SetIntentId(const Aws::String& value) { m_intentId = value; } /** * <p>The identifier of the intent that was updated.</p> */ inline void SetIntentId(Aws::String&& value) { m_intentId = std::move(value); } /** * <p>The identifier of the intent that was updated.</p> */ inline void SetIntentId(const char* value) { m_intentId.assign(value); } /** * <p>The identifier of the intent that was updated.</p> */ inline UpdateIntentResult& WithIntentId(const Aws::String& value) { SetIntentId(value); return *this;} /** * <p>The identifier of the intent that was updated.</p> */ inline UpdateIntentResult& WithIntentId(Aws::String&& value) { SetIntentId(std::move(value)); return *this;} /** * <p>The identifier of the intent that was updated.</p> */ inline UpdateIntentResult& WithIntentId(const char* value) { SetIntentId(value); return *this;} /** * <p>The updated name of the intent.</p> */ inline const Aws::String& GetIntentName() const{ return m_intentName; } /** * <p>The updated name of the intent.</p> */ inline void SetIntentName(const Aws::String& value) { m_intentName = value; } /** * <p>The updated name of the intent.</p> */ inline void SetIntentName(Aws::String&& value) { m_intentName = std::move(value); } /** * <p>The updated name of the intent.</p> */ inline void SetIntentName(const char* value) { m_intentName.assign(value); } /** * <p>The updated name of the intent.</p> */ inline UpdateIntentResult& WithIntentName(const Aws::String& value) { SetIntentName(value); return *this;} /** * <p>The updated name of the intent.</p> */ inline UpdateIntentResult& WithIntentName(Aws::String&& value) { SetIntentName(std::move(value)); return *this;} /** * <p>The updated name of the intent.</p> */ inline UpdateIntentResult& WithIntentName(const char* value) { SetIntentName(value); return *this;} /** * <p>The updated description of the intent.</p> */ inline const Aws::String& GetDescription() const{ return m_description; } /** * <p>The updated description of the intent.</p> */ inline void SetDescription(const Aws::String& value) { m_description = value; } /** * <p>The updated description of the intent.</p> */ inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } /** * <p>The updated description of the intent.</p> */ inline void SetDescription(const char* value) { m_description.assign(value); } /** * <p>The updated description of the intent.</p> */ inline UpdateIntentResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** * <p>The updated description of the intent.</p> */ inline UpdateIntentResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** * <p>The updated description of the intent.</p> */ inline UpdateIntentResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline const Aws::String& GetParentIntentSignature() const{ return m_parentIntentSignature; } /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline void SetParentIntentSignature(const Aws::String& value) { m_parentIntentSignature = value; } /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline void SetParentIntentSignature(Aws::String&& value) { m_parentIntentSignature = std::move(value); } /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline void SetParentIntentSignature(const char* value) { m_parentIntentSignature.assign(value); } /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline UpdateIntentResult& WithParentIntentSignature(const Aws::String& value) { SetParentIntentSignature(value); return *this;} /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline UpdateIntentResult& WithParentIntentSignature(Aws::String&& value) { SetParentIntentSignature(std::move(value)); return *this;} /** * <p>The updated built-in intent that is the parent of this intent.</p> */ inline UpdateIntentResult& WithParentIntentSignature(const char* value) { SetParentIntentSignature(value); return *this;} /** * <p>The updated list of sample utterances for the intent.</p> */ inline const Aws::Vector<SampleUtterance>& GetSampleUtterances() const{ return m_sampleUtterances; } /** * <p>The updated list of sample utterances for the intent.</p> */ inline void SetSampleUtterances(const Aws::Vector<SampleUtterance>& value) { m_sampleUtterances = value; } /** * <p>The updated list of sample utterances for the intent.</p> */ inline void SetSampleUtterances(Aws::Vector<SampleUtterance>&& value) { m_sampleUtterances = std::move(value); } /** * <p>The updated list of sample utterances for the intent.</p> */ inline UpdateIntentResult& WithSampleUtterances(const Aws::Vector<SampleUtterance>& value) { SetSampleUtterances(value); return *this;} /** * <p>The updated list of sample utterances for the intent.</p> */ inline UpdateIntentResult& WithSampleUtterances(Aws::Vector<SampleUtterance>&& value) { SetSampleUtterances(std::move(value)); return *this;} /** * <p>The updated list of sample utterances for the intent.</p> */ inline UpdateIntentResult& AddSampleUtterances(const SampleUtterance& value) { m_sampleUtterances.push_back(value); return *this; } /** * <p>The updated list of sample utterances for the intent.</p> */ inline UpdateIntentResult& AddSampleUtterances(SampleUtterance&& value) { m_sampleUtterances.push_back(std::move(value)); return *this; } /** * <p>The updated Lambda function called during each turn of the conversation with * the user.</p> */ inline const DialogCodeHookSettings& GetDialogCodeHook() const{ return m_dialogCodeHook; } /** * <p>The updated Lambda function called during each turn of the conversation with * the user.</p> */ inline void SetDialogCodeHook(const DialogCodeHookSettings& value) { m_dialogCodeHook = value; } /** * <p>The updated Lambda function called during each turn of the conversation with * the user.</p> */ inline void SetDialogCodeHook(DialogCodeHookSettings&& value) { m_dialogCodeHook = std::move(value); } /** * <p>The updated Lambda function called during each turn of the conversation with * the user.</p> */ inline UpdateIntentResult& WithDialogCodeHook(const DialogCodeHookSettings& value) { SetDialogCodeHook(value); return *this;} /** * <p>The updated Lambda function called during each turn of the conversation with * the user.</p> */ inline UpdateIntentResult& WithDialogCodeHook(DialogCodeHookSettings&& value) { SetDialogCodeHook(std::move(value)); return *this;} /** * <p>The updated Lambda function called when the intent is ready for * fulfillment.</p> */ inline const FulfillmentCodeHookSettings& GetFulfillmentCodeHook() const{ return m_fulfillmentCodeHook; } /** * <p>The updated Lambda function called when the intent is ready for * fulfillment.</p> */ inline void SetFulfillmentCodeHook(const FulfillmentCodeHookSettings& value) { m_fulfillmentCodeHook = value; } /** * <p>The updated Lambda function called when the intent is ready for * fulfillment.</p> */ inline void SetFulfillmentCodeHook(FulfillmentCodeHookSettings&& value) { m_fulfillmentCodeHook = std::move(value); } /** * <p>The updated Lambda function called when the intent is ready for * fulfillment.</p> */ inline UpdateIntentResult& WithFulfillmentCodeHook(const FulfillmentCodeHookSettings& value) { SetFulfillmentCodeHook(value); return *this;} /** * <p>The updated Lambda function called when the intent is ready for * fulfillment.</p> */ inline UpdateIntentResult& WithFulfillmentCodeHook(FulfillmentCodeHookSettings&& value) { SetFulfillmentCodeHook(std::move(value)); return *this;} /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline const Aws::Vector<SlotPriority>& GetSlotPriorities() const{ return m_slotPriorities; } /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline void SetSlotPriorities(const Aws::Vector<SlotPriority>& value) { m_slotPriorities = value; } /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline void SetSlotPriorities(Aws::Vector<SlotPriority>&& value) { m_slotPriorities = std::move(value); } /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline UpdateIntentResult& WithSlotPriorities(const Aws::Vector<SlotPriority>& value) { SetSlotPriorities(value); return *this;} /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline UpdateIntentResult& WithSlotPriorities(Aws::Vector<SlotPriority>&& value) { SetSlotPriorities(std::move(value)); return *this;} /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline UpdateIntentResult& AddSlotPriorities(const SlotPriority& value) { m_slotPriorities.push_back(value); return *this; } /** * <p>The updated list of slots and their priorities that are elicited from the * user for the intent.</p> */ inline UpdateIntentResult& AddSlotPriorities(SlotPriority&& value) { m_slotPriorities.push_back(std::move(value)); return *this; } /** * <p>The updated prompts that Amazon Lex sends to the user to confirm the * completion of an intent.</p> */ inline const IntentConfirmationSetting& GetIntentConfirmationSetting() const{ return m_intentConfirmationSetting; } /** * <p>The updated prompts that Amazon Lex sends to the user to confirm the * completion of an intent.</p> */ inline void SetIntentConfirmationSetting(const IntentConfirmationSetting& value) { m_intentConfirmationSetting = value; } /** * <p>The updated prompts that Amazon Lex sends to the user to confirm the * completion of an intent.</p> */ inline void SetIntentConfirmationSetting(IntentConfirmationSetting&& value) { m_intentConfirmationSetting = std::move(value); } /** * <p>The updated prompts that Amazon Lex sends to the user to confirm the * completion of an intent.</p> */ inline UpdateIntentResult& WithIntentConfirmationSetting(const IntentConfirmationSetting& value) { SetIntentConfirmationSetting(value); return *this;} /** * <p>The updated prompts that Amazon Lex sends to the user to confirm the * completion of an intent.</p> */ inline UpdateIntentResult& WithIntentConfirmationSetting(IntentConfirmationSetting&& value) { SetIntentConfirmationSetting(std::move(value)); return *this;} /** * <p>The updated response that Amazon Lex sends the user when the intent is * closed.</p> */ inline const IntentClosingSetting& GetIntentClosingSetting() const{ return m_intentClosingSetting; } /** * <p>The updated response that Amazon Lex sends the user when the intent is * closed.</p> */ inline void SetIntentClosingSetting(const IntentClosingSetting& value) { m_intentClosingSetting = value; } /** * <p>The updated response that Amazon Lex sends the user when the intent is * closed.</p> */ inline void SetIntentClosingSetting(IntentClosingSetting&& value) { m_intentClosingSetting = std::move(value); } /** * <p>The updated response that Amazon Lex sends the user when the intent is * closed.</p> */ inline UpdateIntentResult& WithIntentClosingSetting(const IntentClosingSetting& value) { SetIntentClosingSetting(value); return *this;} /** * <p>The updated response that Amazon Lex sends the user when the intent is * closed.</p> */ inline UpdateIntentResult& WithIntentClosingSetting(IntentClosingSetting&& value) { SetIntentClosingSetting(std::move(value)); return *this;} /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline const Aws::Vector<InputContext>& GetInputContexts() const{ return m_inputContexts; } /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline void SetInputContexts(const Aws::Vector<InputContext>& value) { m_inputContexts = value; } /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline void SetInputContexts(Aws::Vector<InputContext>&& value) { m_inputContexts = std::move(value); } /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline UpdateIntentResult& WithInputContexts(const Aws::Vector<InputContext>& value) { SetInputContexts(value); return *this;} /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline UpdateIntentResult& WithInputContexts(Aws::Vector<InputContext>&& value) { SetInputContexts(std::move(value)); return *this;} /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline UpdateIntentResult& AddInputContexts(const InputContext& value) { m_inputContexts.push_back(value); return *this; } /** * <p>The updated list of contexts that must be active for the intent to be * considered by Amazon Lex.</p> */ inline UpdateIntentResult& AddInputContexts(InputContext&& value) { m_inputContexts.push_back(std::move(value)); return *this; } /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline const Aws::Vector<OutputContext>& GetOutputContexts() const{ return m_outputContexts; } /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline void SetOutputContexts(const Aws::Vector<OutputContext>& value) { m_outputContexts = value; } /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline void SetOutputContexts(Aws::Vector<OutputContext>&& value) { m_outputContexts = std::move(value); } /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline UpdateIntentResult& WithOutputContexts(const Aws::Vector<OutputContext>& value) { SetOutputContexts(value); return *this;} /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline UpdateIntentResult& WithOutputContexts(Aws::Vector<OutputContext>&& value) { SetOutputContexts(std::move(value)); return *this;} /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline UpdateIntentResult& AddOutputContexts(const OutputContext& value) { m_outputContexts.push_back(value); return *this; } /** * <p>The updated list of contexts that Amazon Lex activates when the intent is * fulfilled.</p> */ inline UpdateIntentResult& AddOutputContexts(OutputContext&& value) { m_outputContexts.push_back(std::move(value)); return *this; } /** * <p>The updated configuration for connecting to an Amazon Kendra index with the * <code>AMAZON.KendraSearchIntent</code> intent.</p> */ inline const KendraConfiguration& GetKendraConfiguration() const{ return m_kendraConfiguration; } /** * <p>The updated configuration for connecting to an Amazon Kendra index with the * <code>AMAZON.KendraSearchIntent</code> intent.</p> */ inline void SetKendraConfiguration(const KendraConfiguration& value) { m_kendraConfiguration = value; } /** * <p>The updated configuration for connecting to an Amazon Kendra index with the * <code>AMAZON.KendraSearchIntent</code> intent.</p> */ inline void SetKendraConfiguration(KendraConfiguration&& value) { m_kendraConfiguration = std::move(value); } /** * <p>The updated configuration for connecting to an Amazon Kendra index with the * <code>AMAZON.KendraSearchIntent</code> intent.</p> */ inline UpdateIntentResult& WithKendraConfiguration(const KendraConfiguration& value) { SetKendraConfiguration(value); return *this;} /** * <p>The updated configuration for connecting to an Amazon Kendra index with the * <code>AMAZON.KendraSearchIntent</code> intent.</p> */ inline UpdateIntentResult& WithKendraConfiguration(KendraConfiguration&& value) { SetKendraConfiguration(std::move(value)); return *this;} /** * <p>The identifier of the bot that contains the intent.</p> */ inline const Aws::String& GetBotId() const{ return m_botId; } /** * <p>The identifier of the bot that contains the intent.</p> */ inline void SetBotId(const Aws::String& value) { m_botId = value; } /** * <p>The identifier of the bot that contains the intent.</p> */ inline void SetBotId(Aws::String&& value) { m_botId = std::move(value); } /** * <p>The identifier of the bot that contains the intent.</p> */ inline void SetBotId(const char* value) { m_botId.assign(value); } /** * <p>The identifier of the bot that contains the intent.</p> */ inline UpdateIntentResult& WithBotId(const Aws::String& value) { SetBotId(value); return *this;} /** * <p>The identifier of the bot that contains the intent.</p> */ inline UpdateIntentResult& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;} /** * <p>The identifier of the bot that contains the intent.</p> */ inline UpdateIntentResult& WithBotId(const char* value) { SetBotId(value); return *this;} /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline const Aws::String& GetBotVersion() const{ return m_botVersion; } /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline void SetBotVersion(const Aws::String& value) { m_botVersion = value; } /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline void SetBotVersion(Aws::String&& value) { m_botVersion = std::move(value); } /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline void SetBotVersion(const char* value) { m_botVersion.assign(value); } /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline UpdateIntentResult& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;} /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline UpdateIntentResult& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;} /** * <p>The version of the bot that contains the intent. Will always be * <code>DRAFT</code>.</p> */ inline UpdateIntentResult& WithBotVersion(const char* value) { SetBotVersion(value); return *this;} /** * <p>The updated language and locale of the intent.</p> */ inline const Aws::String& GetLocaleId() const{ return m_localeId; } /** * <p>The updated language and locale of the intent.</p> */ inline void SetLocaleId(const Aws::String& value) { m_localeId = value; } /** * <p>The updated language and locale of the intent.</p> */ inline void SetLocaleId(Aws::String&& value) { m_localeId = std::move(value); } /** * <p>The updated language and locale of the intent.</p> */ inline void SetLocaleId(const char* value) { m_localeId.assign(value); } /** * <p>The updated language and locale of the intent.</p> */ inline UpdateIntentResult& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;} /** * <p>The updated language and locale of the intent.</p> */ inline UpdateIntentResult& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;} /** * <p>The updated language and locale of the intent.</p> */ inline UpdateIntentResult& WithLocaleId(const char* value) { SetLocaleId(value); return *this;} /** * <p>A timestamp of when the intent was created.</p> */ inline const Aws::Utils::DateTime& GetCreationDateTime() const{ return m_creationDateTime; } /** * <p>A timestamp of when the intent was created.</p> */ inline void SetCreationDateTime(const Aws::Utils::DateTime& value) { m_creationDateTime = value; } /** * <p>A timestamp of when the intent was created.</p> */ inline void SetCreationDateTime(Aws::Utils::DateTime&& value) { m_creationDateTime = std::move(value); } /** * <p>A timestamp of when the intent was created.</p> */ inline UpdateIntentResult& WithCreationDateTime(const Aws::Utils::DateTime& value) { SetCreationDateTime(value); return *this;} /** * <p>A timestamp of when the intent was created.</p> */ inline UpdateIntentResult& WithCreationDateTime(Aws::Utils::DateTime&& value) { SetCreationDateTime(std::move(value)); return *this;} /** * <p>A timestamp of the last time that the intent was modified.</p> */ inline const Aws::Utils::DateTime& GetLastUpdatedDateTime() const{ return m_lastUpdatedDateTime; } /** * <p>A timestamp of the last time that the intent was modified.</p> */ inline void SetLastUpdatedDateTime(const Aws::Utils::DateTime& value) { m_lastUpdatedDateTime = value; } /** * <p>A timestamp of the last time that the intent was modified.</p> */ inline void SetLastUpdatedDateTime(Aws::Utils::DateTime&& value) { m_lastUpdatedDateTime = std::move(value); } /** * <p>A timestamp of the last time that the intent was modified.</p> */ inline UpdateIntentResult& WithLastUpdatedDateTime(const Aws::Utils::DateTime& value) { SetLastUpdatedDateTime(value); return *this;} /** * <p>A timestamp of the last time that the intent was modified.</p> */ inline UpdateIntentResult& WithLastUpdatedDateTime(Aws::Utils::DateTime&& value) { SetLastUpdatedDateTime(std::move(value)); return *this;} /** * <p>Configuration settings for a response sent to the user before Amazon Lex * starts eliciting slots.</p> */ inline const InitialResponseSetting& GetInitialResponseSetting() const{ return m_initialResponseSetting; } /** * <p>Configuration settings for a response sent to the user before Amazon Lex * starts eliciting slots.</p> */ inline void SetInitialResponseSetting(const InitialResponseSetting& value) { m_initialResponseSetting = value; } /** * <p>Configuration settings for a response sent to the user before Amazon Lex * starts eliciting slots.</p> */ inline void SetInitialResponseSetting(InitialResponseSetting&& value) { m_initialResponseSetting = std::move(value); } /** * <p>Configuration settings for a response sent to the user before Amazon Lex * starts eliciting slots.</p> */ inline UpdateIntentResult& WithInitialResponseSetting(const InitialResponseSetting& value) { SetInitialResponseSetting(value); return *this;} /** * <p>Configuration settings for a response sent to the user before Amazon Lex * starts eliciting slots.</p> */ inline UpdateIntentResult& WithInitialResponseSetting(InitialResponseSetting&& value) { SetInitialResponseSetting(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 UpdateIntentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateIntentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateIntentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_intentId; Aws::String m_intentName; Aws::String m_description; Aws::String m_parentIntentSignature; Aws::Vector<SampleUtterance> m_sampleUtterances; DialogCodeHookSettings m_dialogCodeHook; FulfillmentCodeHookSettings m_fulfillmentCodeHook; Aws::Vector<SlotPriority> m_slotPriorities; IntentConfirmationSetting m_intentConfirmationSetting; IntentClosingSetting m_intentClosingSetting; Aws::Vector<InputContext> m_inputContexts; Aws::Vector<OutputContext> m_outputContexts; KendraConfiguration m_kendraConfiguration; Aws::String m_botId; Aws::String m_botVersion; Aws::String m_localeId; Aws::Utils::DateTime m_creationDateTime; Aws::Utils::DateTime m_lastUpdatedDateTime; InitialResponseSetting m_initialResponseSetting; Aws::String m_requestId; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws