/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides metadata for a built-in intent.See Also:
AWS
* API Reference
A unique identifier for the 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; } /** *A unique identifier for the 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; } /** *A unique identifier for the 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; } /** *A unique identifier for the 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); } /** *A unique identifier for the 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); } /** *A unique identifier for the built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.
*/ inline BuiltinIntentMetadata& WithSignature(const Aws::String& value) { SetSignature(value); return *this;} /** *A unique identifier for the built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.
*/ inline BuiltinIntentMetadata& WithSignature(Aws::String&& value) { SetSignature(std::move(value)); return *this;} /** *A unique identifier for the built-in intent. To find the signature for an * intent, see Standard * Built-in Intents in the Alexa Skills Kit.
*/ inline BuiltinIntentMetadata& WithSignature(const char* value) { SetSignature(value); return *this;} /** *A list of identifiers for the locales that the intent supports.
*/ inline const Aws::VectorA list of identifiers for the locales that the intent supports.
*/ inline bool SupportedLocalesHasBeenSet() const { return m_supportedLocalesHasBeenSet; } /** *A list of identifiers for the locales that the intent supports.
*/ inline void SetSupportedLocales(const Aws::VectorA list of identifiers for the locales that the intent supports.
*/ inline void SetSupportedLocales(Aws::VectorA list of identifiers for the locales that the intent supports.
*/ inline BuiltinIntentMetadata& WithSupportedLocales(const Aws::VectorA list of identifiers for the locales that the intent supports.
*/ inline BuiltinIntentMetadata& WithSupportedLocales(Aws::VectorA list of identifiers for the locales that the intent supports.
*/ inline BuiltinIntentMetadata& AddSupportedLocales(const Locale& value) { m_supportedLocalesHasBeenSet = true; m_supportedLocales.push_back(value); return *this; } /** *A list of identifiers for the locales that the intent supports.
*/ inline BuiltinIntentMetadata& AddSupportedLocales(Locale&& value) { m_supportedLocalesHasBeenSet = true; m_supportedLocales.push_back(std::move(value)); return *this; } private: Aws::String m_signature; bool m_signatureHasBeenSet = false; Aws::Vector