/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LexModelsV2 { namespace Model { /** *

The target Amazon S3 location for the test set execution using a bot * alias.

See Also:

AWS * API Reference

*/ class BotAliasTestExecutionTarget { public: AWS_LEXMODELSV2_API BotAliasTestExecutionTarget(); AWS_LEXMODELSV2_API BotAliasTestExecutionTarget(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API BotAliasTestExecutionTarget& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot Id of the bot alias used in the test set execution.

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

The bot alias Id of the bot alias used in the test set execution.

*/ inline const Aws::String& GetBotAliasId() const{ return m_botAliasId; } /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline bool BotAliasIdHasBeenSet() const { return m_botAliasIdHasBeenSet; } /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline void SetBotAliasId(const Aws::String& value) { m_botAliasIdHasBeenSet = true; m_botAliasId = value; } /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline void SetBotAliasId(Aws::String&& value) { m_botAliasIdHasBeenSet = true; m_botAliasId = std::move(value); } /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline void SetBotAliasId(const char* value) { m_botAliasIdHasBeenSet = true; m_botAliasId.assign(value); } /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline BotAliasTestExecutionTarget& WithBotAliasId(const Aws::String& value) { SetBotAliasId(value); return *this;} /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline BotAliasTestExecutionTarget& WithBotAliasId(Aws::String&& value) { SetBotAliasId(std::move(value)); return *this;} /** *

The bot alias Id of the bot alias used in the test set execution.

*/ inline BotAliasTestExecutionTarget& WithBotAliasId(const char* value) { SetBotAliasId(value); return *this;} /** *

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

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

The locale Id of the bot alias used in the test set execution.

*/ inline BotAliasTestExecutionTarget& WithLocaleId(const char* value) { SetLocaleId(value); return *this;} private: Aws::String m_botId; bool m_botIdHasBeenSet = false; Aws::String m_botAliasId; bool m_botAliasIdHasBeenSet = false; Aws::String m_localeId; bool m_localeIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws