/** * 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 SageMaker { namespace Model { /** *

A property name returned from a GetSearchSuggestions call that * specifies a value in the PropertyNameQuery field.

See * Also:

AWS * API Reference

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

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline const Aws::String& GetPropertyName() const{ return m_propertyName; } /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline bool PropertyNameHasBeenSet() const { return m_propertyNameHasBeenSet; } /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline void SetPropertyName(const Aws::String& value) { m_propertyNameHasBeenSet = true; m_propertyName = value; } /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline void SetPropertyName(Aws::String&& value) { m_propertyNameHasBeenSet = true; m_propertyName = std::move(value); } /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline void SetPropertyName(const char* value) { m_propertyNameHasBeenSet = true; m_propertyName.assign(value); } /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline PropertyNameSuggestion& WithPropertyName(const Aws::String& value) { SetPropertyName(value); return *this;} /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline PropertyNameSuggestion& WithPropertyName(Aws::String&& value) { SetPropertyName(std::move(value)); return *this;} /** *

A suggested property name based on what you entered in the search textbox in * the SageMaker console.

*/ inline PropertyNameSuggestion& WithPropertyName(const char* value) { SetPropertyName(value); return *this;} private: Aws::String m_propertyName; bool m_propertyNameHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws