/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace LexModelsV2 { namespace Model { /** */ class StartBotRecommendationRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API StartBotRecommendationRequest(); // 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 "StartBotRecommendation"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The unique identifier of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The version of the bot containing the bot recommendation.

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

The identifier of the language and locale of the bot recommendation to start. * 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 bot recommendation to start. * 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 bot recommendation to start. * 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 bot recommendation to start. * 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 bot recommendation to start. * 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 bot recommendation to start. * The string must match one of the supported locales. For more information, see Supported * languages

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

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

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

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

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

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline const TranscriptSourceSetting& GetTranscriptSourceSetting() const{ return m_transcriptSourceSetting; } /** *

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline bool TranscriptSourceSettingHasBeenSet() const { return m_transcriptSourceSettingHasBeenSet; } /** *

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline void SetTranscriptSourceSetting(const TranscriptSourceSetting& value) { m_transcriptSourceSettingHasBeenSet = true; m_transcriptSourceSetting = value; } /** *

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline void SetTranscriptSourceSetting(TranscriptSourceSetting&& value) { m_transcriptSourceSettingHasBeenSet = true; m_transcriptSourceSetting = std::move(value); } /** *

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline StartBotRecommendationRequest& WithTranscriptSourceSetting(const TranscriptSourceSetting& value) { SetTranscriptSourceSetting(value); return *this;} /** *

The object representing the Amazon S3 bucket containing the transcript, as * well as the associated metadata.

*/ inline StartBotRecommendationRequest& WithTranscriptSourceSetting(TranscriptSourceSetting&& value) { SetTranscriptSourceSetting(std::move(value)); return *this;} /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline const EncryptionSetting& GetEncryptionSetting() const{ return m_encryptionSetting; } /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline bool EncryptionSettingHasBeenSet() const { return m_encryptionSettingHasBeenSet; } /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline void SetEncryptionSetting(const EncryptionSetting& value) { m_encryptionSettingHasBeenSet = true; m_encryptionSetting = value; } /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline void SetEncryptionSetting(EncryptionSetting&& value) { m_encryptionSettingHasBeenSet = true; m_encryptionSetting = std::move(value); } /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline StartBotRecommendationRequest& WithEncryptionSetting(const EncryptionSetting& value) { SetEncryptionSetting(value); return *this;} /** *

The object representing the passwords that will be used to encrypt the data * related to the bot recommendation results, as well as the KMS key ARN used to * encrypt the associated metadata.

*/ inline StartBotRecommendationRequest& WithEncryptionSetting(EncryptionSetting&& value) { SetEncryptionSetting(std::move(value)); return *this;} private: Aws::String m_botId; bool m_botIdHasBeenSet = false; Aws::String m_botVersion; bool m_botVersionHasBeenSet = false; Aws::String m_localeId; bool m_localeIdHasBeenSet = false; TranscriptSourceSetting m_transcriptSourceSetting; bool m_transcriptSourceSettingHasBeenSet = false; EncryptionSetting m_encryptionSetting; bool m_encryptionSettingHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws