/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The resolved attributes specific to the TABULAR
problem
* type.See Also:
AWS
* API Reference
The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline const ProblemType& GetProblemType() const{ return m_problemType; } /** *The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline bool ProblemTypeHasBeenSet() const { return m_problemTypeHasBeenSet; } /** *The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline void SetProblemType(const ProblemType& value) { m_problemTypeHasBeenSet = true; m_problemType = value; } /** *The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline void SetProblemType(ProblemType&& value) { m_problemTypeHasBeenSet = true; m_problemType = std::move(value); } /** *The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline TabularResolvedAttributes& WithProblemType(const ProblemType& value) { SetProblemType(value); return *this;} /** *The type of supervised learning problem available for the model candidates of * the AutoML job V2 (Binary Classification, Multiclass Classification, * Regression). For more information, see * Amazon SageMaker Autopilot problem types.
*/ inline TabularResolvedAttributes& WithProblemType(ProblemType&& value) { SetProblemType(std::move(value)); return *this;} private: ProblemType m_problemType; bool m_problemTypeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws