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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The unique identifier of the bot associated with the transcripts that you are * searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

The version of the bot containing the transcripts that you are searching.

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

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

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

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

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

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

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

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline const Aws::String& GetBotRecommendationId() const{ return m_botRecommendationId; } /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline bool BotRecommendationIdHasBeenSet() const { return m_botRecommendationIdHasBeenSet; } /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline void SetBotRecommendationId(const Aws::String& value) { m_botRecommendationIdHasBeenSet = true; m_botRecommendationId = value; } /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline void SetBotRecommendationId(Aws::String&& value) { m_botRecommendationIdHasBeenSet = true; m_botRecommendationId = std::move(value); } /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline void SetBotRecommendationId(const char* value) { m_botRecommendationIdHasBeenSet = true; m_botRecommendationId.assign(value); } /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline SearchAssociatedTranscriptsRequest& WithBotRecommendationId(const Aws::String& value) { SetBotRecommendationId(value); return *this;} /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline SearchAssociatedTranscriptsRequest& WithBotRecommendationId(Aws::String&& value) { SetBotRecommendationId(std::move(value)); return *this;} /** *

The unique identifier of the bot recommendation associated with the * transcripts to search.

*/ inline SearchAssociatedTranscriptsRequest& WithBotRecommendationId(const char* value) { SetBotRecommendationId(value); return *this;} /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline const SearchOrder& GetSearchOrder() const{ return m_searchOrder; } /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline bool SearchOrderHasBeenSet() const { return m_searchOrderHasBeenSet; } /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline void SetSearchOrder(const SearchOrder& value) { m_searchOrderHasBeenSet = true; m_searchOrder = value; } /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline void SetSearchOrder(SearchOrder&& value) { m_searchOrderHasBeenSet = true; m_searchOrder = std::move(value); } /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline SearchAssociatedTranscriptsRequest& WithSearchOrder(const SearchOrder& value) { SetSearchOrder(value); return *this;} /** *

How SearchResults are ordered. Valid values are Ascending or Descending. The * default is Descending.

*/ inline SearchAssociatedTranscriptsRequest& WithSearchOrder(SearchOrder&& value) { SetSearchOrder(std::move(value)); return *this;} /** *

A list of filter objects.

*/ inline const Aws::Vector& GetFilters() const{ return m_filters; } /** *

A list of filter objects.

*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *

A list of filter objects.

*/ inline void SetFilters(const Aws::Vector& value) { m_filtersHasBeenSet = true; m_filters = value; } /** *

A list of filter objects.

*/ inline void SetFilters(Aws::Vector&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); } /** *

A list of filter objects.

*/ inline SearchAssociatedTranscriptsRequest& WithFilters(const Aws::Vector& value) { SetFilters(value); return *this;} /** *

A list of filter objects.

*/ inline SearchAssociatedTranscriptsRequest& WithFilters(Aws::Vector&& value) { SetFilters(std::move(value)); return *this;} /** *

A list of filter objects.

*/ inline SearchAssociatedTranscriptsRequest& AddFilters(const AssociatedTranscriptFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** *

A list of filter objects.

*/ inline SearchAssociatedTranscriptsRequest& AddFilters(AssociatedTranscriptFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; } /** *

The maximum number of bot recommendations to return in each page of results. * If there are fewer results than the max page size, only the actual number of * results are returned.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of bot recommendations to return in each page of results. * If there are fewer results than the max page size, only the actual number of * results are returned.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of bot recommendations to return in each page of results. * If there are fewer results than the max page size, only the actual number of * results are returned.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of bot recommendations to return in each page of results. * If there are fewer results than the max page size, only the actual number of * results are returned.

*/ inline SearchAssociatedTranscriptsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

If the response from the SearchAssociatedTranscriptsRequest operation * contains more results than specified in the maxResults parameter, an index is * returned in the response. Use that index in the nextIndex parameter to return * the next page of results.

*/ inline int GetNextIndex() const{ return m_nextIndex; } /** *

If the response from the SearchAssociatedTranscriptsRequest operation * contains more results than specified in the maxResults parameter, an index is * returned in the response. Use that index in the nextIndex parameter to return * the next page of results.

*/ inline bool NextIndexHasBeenSet() const { return m_nextIndexHasBeenSet; } /** *

If the response from the SearchAssociatedTranscriptsRequest operation * contains more results than specified in the maxResults parameter, an index is * returned in the response. Use that index in the nextIndex parameter to return * the next page of results.

*/ inline void SetNextIndex(int value) { m_nextIndexHasBeenSet = true; m_nextIndex = value; } /** *

If the response from the SearchAssociatedTranscriptsRequest operation * contains more results than specified in the maxResults parameter, an index is * returned in the response. Use that index in the nextIndex parameter to return * the next page of results.

*/ inline SearchAssociatedTranscriptsRequest& WithNextIndex(int value) { SetNextIndex(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; Aws::String m_botRecommendationId; bool m_botRecommendationIdHasBeenSet = false; SearchOrder m_searchOrder; bool m_searchOrderHasBeenSet = false; Aws::Vector m_filters; bool m_filtersHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; int m_nextIndex; bool m_nextIndexHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws