/** * 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 { /** *

Part of the SuggestionQuery type. Specifies a hint for * retrieving property names that begin with the specified text.

See * Also:

AWS * API Reference

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

Text that begins a property's name.

*/ inline const Aws::String& GetPropertyNameHint() const{ return m_propertyNameHint; } /** *

Text that begins a property's name.

*/ inline bool PropertyNameHintHasBeenSet() const { return m_propertyNameHintHasBeenSet; } /** *

Text that begins a property's name.

*/ inline void SetPropertyNameHint(const Aws::String& value) { m_propertyNameHintHasBeenSet = true; m_propertyNameHint = value; } /** *

Text that begins a property's name.

*/ inline void SetPropertyNameHint(Aws::String&& value) { m_propertyNameHintHasBeenSet = true; m_propertyNameHint = std::move(value); } /** *

Text that begins a property's name.

*/ inline void SetPropertyNameHint(const char* value) { m_propertyNameHintHasBeenSet = true; m_propertyNameHint.assign(value); } /** *

Text that begins a property's name.

*/ inline PropertyNameQuery& WithPropertyNameHint(const Aws::String& value) { SetPropertyNameHint(value); return *this;} /** *

Text that begins a property's name.

*/ inline PropertyNameQuery& WithPropertyNameHint(Aws::String&& value) { SetPropertyNameHint(std::move(value)); return *this;} /** *

Text that begins a property's name.

*/ inline PropertyNameQuery& WithPropertyNameHint(const char* value) { SetPropertyNameHint(value); return *this;} private: Aws::String m_propertyNameHint; bool m_propertyNameHintHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws