/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

The resolved attributes specific to the TABULAR problem * type.

See Also:

AWS * API Reference

*/ class TabularResolvedAttributes { public: AWS_SAGEMAKER_API TabularResolvedAttributes(); AWS_SAGEMAKER_API TabularResolvedAttributes(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API TabularResolvedAttributes& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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