/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LexModelsV2 { namespace Model { /** *

Provides summary information about a built-in intent for the * ListBuiltInIntents operation.

See Also:

AWS * API Reference

*/ class BuiltInIntentSummary { public: AWS_LEXMODELSV2_API BuiltInIntentSummary(); AWS_LEXMODELSV2_API BuiltInIntentSummary(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API BuiltInIntentSummary& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline const Aws::String& GetIntentSignature() const{ return m_intentSignature; } /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline bool IntentSignatureHasBeenSet() const { return m_intentSignatureHasBeenSet; } /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline void SetIntentSignature(const Aws::String& value) { m_intentSignatureHasBeenSet = true; m_intentSignature = value; } /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline void SetIntentSignature(Aws::String&& value) { m_intentSignatureHasBeenSet = true; m_intentSignature = std::move(value); } /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline void SetIntentSignature(const char* value) { m_intentSignatureHasBeenSet = true; m_intentSignature.assign(value); } /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline BuiltInIntentSummary& WithIntentSignature(const Aws::String& value) { SetIntentSignature(value); return *this;} /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline BuiltInIntentSummary& WithIntentSignature(Aws::String&& value) { SetIntentSignature(std::move(value)); return *this;} /** *

The signature of the built-in intent. Use this to specify the parent intent * of a derived intent.

*/ inline BuiltInIntentSummary& WithIntentSignature(const char* value) { SetIntentSignature(value); return *this;} /** *

The description of the intent.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the intent.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of the intent.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of the intent.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of the intent.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of the intent.

*/ inline BuiltInIntentSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the intent.

*/ inline BuiltInIntentSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the intent.

*/ inline BuiltInIntentSummary& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_intentSignature; bool m_intentSignatureHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws