/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include If hyperparameter optimization (HPO) was performed, contains the
* hyperparameter values of the best performing model.See Also:
* AWS
* API Reference
A list of the hyperparameter values of the best performing model.
*/ inline const Aws::MapA list of the hyperparameter values of the best performing model.
*/ inline bool AlgorithmHyperParametersHasBeenSet() const { return m_algorithmHyperParametersHasBeenSet; } /** *A list of the hyperparameter values of the best performing model.
*/ inline void SetAlgorithmHyperParameters(const Aws::MapA list of the hyperparameter values of the best performing model.
*/ inline void SetAlgorithmHyperParameters(Aws::MapA list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& WithAlgorithmHyperParameters(const Aws::MapA list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& WithAlgorithmHyperParameters(Aws::MapA list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(const Aws::String& key, const Aws::String& value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(key, value); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(Aws::String&& key, const Aws::String& value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(std::move(key), value); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(const Aws::String& key, Aws::String&& value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(key, std::move(value)); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(Aws::String&& key, Aws::String&& value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(std::move(key), std::move(value)); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(const char* key, Aws::String&& value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(key, std::move(value)); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(Aws::String&& key, const char* value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(std::move(key), value); return *this; } /** *A list of the hyperparameter values of the best performing model.
*/ inline TunedHPOParams& AddAlgorithmHyperParameters(const char* key, const char* value) { m_algorithmHyperParametersHasBeenSet = true; m_algorithmHyperParameters.emplace(key, value); return *this; } private: Aws::Map