/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace LexModelBuildingService { namespace Model { /** */ class GetBuiltinIntentsRequest : public LexModelBuildingServiceRequest { public: AWS_LEXMODELBUILDINGSERVICE_API GetBuiltinIntentsRequest(); // 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 "GetBuiltinIntents"; } AWS_LEXMODELBUILDINGSERVICE_API Aws::String SerializePayload() const override; AWS_LEXMODELBUILDINGSERVICE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

A list of locales that the intent supports.

*/ inline const Locale& GetLocale() const{ return m_locale; } /** *

A list of locales that the intent supports.

*/ inline bool LocaleHasBeenSet() const { return m_localeHasBeenSet; } /** *

A list of locales that the intent supports.

*/ inline void SetLocale(const Locale& value) { m_localeHasBeenSet = true; m_locale = value; } /** *

A list of locales that the intent supports.

*/ inline void SetLocale(Locale&& value) { m_localeHasBeenSet = true; m_locale = std::move(value); } /** *

A list of locales that the intent supports.

*/ inline GetBuiltinIntentsRequest& WithLocale(const Locale& value) { SetLocale(value); return *this;} /** *

A list of locales that the intent supports.

*/ inline GetBuiltinIntentsRequest& WithLocale(Locale&& value) { SetLocale(std::move(value)); return *this;} /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline const Aws::String& GetSignatureContains() const{ return m_signatureContains; } /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline bool SignatureContainsHasBeenSet() const { return m_signatureContainsHasBeenSet; } /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignatureContains(const Aws::String& value) { m_signatureContainsHasBeenSet = true; m_signatureContains = value; } /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignatureContains(Aws::String&& value) { m_signatureContainsHasBeenSet = true; m_signatureContains = std::move(value); } /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignatureContains(const char* value) { m_signatureContainsHasBeenSet = true; m_signatureContains.assign(value); } /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentsRequest& WithSignatureContains(const Aws::String& value) { SetSignatureContains(value); return *this;} /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentsRequest& WithSignatureContains(Aws::String&& value) { SetSignatureContains(std::move(value)); return *this;} /** *

Substring to match in built-in intent signatures. An intent will be returned * if any part of its signature matches the substring. For example, "xyz" matches * both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentsRequest& WithSignatureContains(const char* value) { SetSignatureContains(value); return *this;} /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline GetBuiltinIntentsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline GetBuiltinIntentsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A pagination token that fetches the next page of intents. If this API call is * truncated, Amazon Lex returns a pagination token in the response. To fetch the * next page of intents, use the pagination token in the next request.

*/ inline GetBuiltinIntentsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of intents to return in the response. The default is * 10.

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

The maximum number of intents to return in the response. The default is * 10.

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

The maximum number of intents to return in the response. The default is * 10.

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

The maximum number of intents to return in the response. The default is * 10.

*/ inline GetBuiltinIntentsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Locale m_locale; bool m_localeHasBeenSet = false; Aws::String m_signatureContains; bool m_signatureContainsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace LexModelBuildingService } // namespace Aws