/** * 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 LexModelsV2 { namespace Model { /** */ class DescribeSlotRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API DescribeSlotRequest(); // 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 "DescribeSlot"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The unique identifier for the slot.

*/ inline const Aws::String& GetSlotId() const{ return m_slotId; } /** *

The unique identifier for the slot.

*/ inline bool SlotIdHasBeenSet() const { return m_slotIdHasBeenSet; } /** *

The unique identifier for the slot.

*/ inline void SetSlotId(const Aws::String& value) { m_slotIdHasBeenSet = true; m_slotId = value; } /** *

The unique identifier for the slot.

*/ inline void SetSlotId(Aws::String&& value) { m_slotIdHasBeenSet = true; m_slotId = std::move(value); } /** *

The unique identifier for the slot.

*/ inline void SetSlotId(const char* value) { m_slotIdHasBeenSet = true; m_slotId.assign(value); } /** *

The unique identifier for the slot.

*/ inline DescribeSlotRequest& WithSlotId(const Aws::String& value) { SetSlotId(value); return *this;} /** *

The unique identifier for the slot.

*/ inline DescribeSlotRequest& WithSlotId(Aws::String&& value) { SetSlotId(std::move(value)); return *this;} /** *

The unique identifier for the slot.

*/ inline DescribeSlotRequest& WithSlotId(const char* value) { SetSlotId(value); return *this;} /** *

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

*/ inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; } /** *

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

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

The identifier of the bot associated with the slot.

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

The version of the bot associated with the slot.

*/ inline const Aws::String& GetBotVersion() const{ return m_botVersion; } /** *

The version of the bot associated with the slot.

*/ inline bool BotVersionHasBeenSet() const { return m_botVersionHasBeenSet; } /** *

The version of the bot associated with the slot.

*/ inline void SetBotVersion(const Aws::String& value) { m_botVersionHasBeenSet = true; m_botVersion = value; } /** *

The version of the bot associated with the slot.

*/ inline void SetBotVersion(Aws::String&& value) { m_botVersionHasBeenSet = true; m_botVersion = std::move(value); } /** *

The version of the bot associated with the slot.

*/ inline void SetBotVersion(const char* value) { m_botVersionHasBeenSet = true; m_botVersion.assign(value); } /** *

The version of the bot associated with the slot.

*/ inline DescribeSlotRequest& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;} /** *

The version of the bot associated with the slot.

*/ inline DescribeSlotRequest& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;} /** *

The version of the bot associated with the slot.

*/ inline DescribeSlotRequest& WithBotVersion(const char* value) { SetBotVersion(value); return *this;} /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline const Aws::String& GetLocaleId() const{ return m_localeId; } /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; } /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline void SetLocaleId(const Aws::String& value) { m_localeIdHasBeenSet = true; m_localeId = value; } /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline void SetLocaleId(Aws::String&& value) { m_localeIdHasBeenSet = true; m_localeId = std::move(value); } /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline void SetLocaleId(const char* value) { m_localeIdHasBeenSet = true; m_localeId.assign(value); } /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline DescribeSlotRequest& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;} /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline DescribeSlotRequest& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;} /** *

The identifier of the language and locale of the slot to describe. The string * must match one of the supported locales. For more information, see Supported * languages.

*/ inline DescribeSlotRequest& WithLocaleId(const char* value) { SetLocaleId(value); return *this;} /** *

The identifier of the intent that contains the slot.

*/ inline const Aws::String& GetIntentId() const{ return m_intentId; } /** *

The identifier of the intent that contains the slot.

*/ inline bool IntentIdHasBeenSet() const { return m_intentIdHasBeenSet; } /** *

The identifier of the intent that contains the slot.

*/ inline void SetIntentId(const Aws::String& value) { m_intentIdHasBeenSet = true; m_intentId = value; } /** *

The identifier of the intent that contains the slot.

*/ inline void SetIntentId(Aws::String&& value) { m_intentIdHasBeenSet = true; m_intentId = std::move(value); } /** *

The identifier of the intent that contains the slot.

*/ inline void SetIntentId(const char* value) { m_intentIdHasBeenSet = true; m_intentId.assign(value); } /** *

The identifier of the intent that contains the slot.

*/ inline DescribeSlotRequest& WithIntentId(const Aws::String& value) { SetIntentId(value); return *this;} /** *

The identifier of the intent that contains the slot.

*/ inline DescribeSlotRequest& WithIntentId(Aws::String&& value) { SetIntentId(std::move(value)); return *this;} /** *

The identifier of the intent that contains the slot.

*/ inline DescribeSlotRequest& WithIntentId(const char* value) { SetIntentId(value); return *this;} private: Aws::String m_slotId; bool m_slotIdHasBeenSet = false; Aws::String m_botId; bool m_botIdHasBeenSet = false; Aws::String m_botVersion; bool m_botVersionHasBeenSet = false; Aws::String m_localeId; bool m_localeIdHasBeenSet = false; Aws::String m_intentId; bool m_intentIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws