/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Part of the SuggestionQuery
type. Specifies a hint for
* retrieving property names that begin with the specified text.See
* Also:
AWS
* API Reference
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