/** * 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 LexModelBuildingService { namespace Model { /** */ class GetBuiltinIntentRequest : public LexModelBuildingServiceRequest { public: AWS_LEXMODELBUILDINGSERVICE_API GetBuiltinIntentRequest(); // 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 "GetBuiltinIntent"; } AWS_LEXMODELBUILDINGSERVICE_API Aws::String SerializePayload() const override; /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline const Aws::String& GetSignature() const{ return m_signature; } /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline bool SignatureHasBeenSet() const { return m_signatureHasBeenSet; } /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignature(const Aws::String& value) { m_signatureHasBeenSet = true; m_signature = value; } /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignature(Aws::String&& value) { m_signatureHasBeenSet = true; m_signature = std::move(value); } /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline void SetSignature(const char* value) { m_signatureHasBeenSet = true; m_signature.assign(value); } /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentRequest& WithSignature(const Aws::String& value) { SetSignature(value); return *this;} /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentRequest& WithSignature(Aws::String&& value) { SetSignature(std::move(value)); return *this;} /** *

The unique identifier for a built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.

*/ inline GetBuiltinIntentRequest& WithSignature(const char* value) { SetSignature(value); return *this;} private: Aws::String m_signature; bool m_signatureHasBeenSet = false; }; } // namespace Model } // namespace LexModelBuildingService } // namespace Aws