/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A property name returned from a GetSearchSuggestions
call that
* specifies a value in the PropertyNameQuery
field.See
* Also:
AWS
* API Reference
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