108 lines
4.5 KiB
C++
108 lines
4.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/lex-models/LexModelBuildingService_EXPORTS.h>
|
|
#include <aws/lex-models/LexModelBuildingServiceRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace LexModelBuildingService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_LEXMODELBUILDINGSERVICE_API GetBuiltinIntentRequest : public LexModelBuildingServiceRequest
|
|
{
|
|
public:
|
|
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::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline const Aws::String& GetSignature() const{ return m_signature; }
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline bool SignatureHasBeenSet() const { return m_signatureHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline void SetSignature(const Aws::String& value) { m_signatureHasBeenSet = true; m_signature = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline void SetSignature(Aws::String&& value) { m_signatureHasBeenSet = true; m_signature = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline void SetSignature(const char* value) { m_signatureHasBeenSet = true; m_signature.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline GetBuiltinIntentRequest& WithSignature(const Aws::String& value) { SetSignature(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline GetBuiltinIntentRequest& WithSignature(Aws::String&& value) { SetSignature(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for a built-in intent. To find the signature for an
|
|
* intent, see <a
|
|
* href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard
|
|
* Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p>
|
|
*/
|
|
inline GetBuiltinIntentRequest& WithSignature(const char* value) { SetSignature(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_signature;
|
|
bool m_signatureHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace LexModelBuildingService
|
|
} // namespace Aws
|