/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of environment parameters suggested by the Amazon SageMaker Inference
* Recommender.See Also:
AWS
* API Reference
The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline EnvironmentParameter& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline EnvironmentParameter& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *The environment key suggested by the Amazon SageMaker Inference * Recommender.
*/ inline EnvironmentParameter& WithKey(const char* value) { SetKey(value); return *this;} /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline const Aws::String& GetValueType() const{ return m_valueType; } /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline bool ValueTypeHasBeenSet() const { return m_valueTypeHasBeenSet; } /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValueType(const Aws::String& value) { m_valueTypeHasBeenSet = true; m_valueType = value; } /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValueType(Aws::String&& value) { m_valueTypeHasBeenSet = true; m_valueType = std::move(value); } /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValueType(const char* value) { m_valueTypeHasBeenSet = true; m_valueType.assign(value); } /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValueType(const Aws::String& value) { SetValueType(value); return *this;} /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValueType(Aws::String&& value) { SetValueType(std::move(value)); return *this;} /** *The value type suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValueType(const char* value) { SetValueType(value); return *this;} /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The value suggested by the Amazon SageMaker Inference Recommender.
*/ inline EnvironmentParameter& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_valueType; bool m_valueTypeHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws