/** * 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 location of artifacts for an AutoML candidate job.

See * Also:

AWS * API Reference

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

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline const Aws::String& GetExplainability() const{ return m_explainability; } /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline bool ExplainabilityHasBeenSet() const { return m_explainabilityHasBeenSet; } /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline void SetExplainability(const Aws::String& value) { m_explainabilityHasBeenSet = true; m_explainability = value; } /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline void SetExplainability(Aws::String&& value) { m_explainabilityHasBeenSet = true; m_explainability = std::move(value); } /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline void SetExplainability(const char* value) { m_explainabilityHasBeenSet = true; m_explainability.assign(value); } /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithExplainability(const Aws::String& value) { SetExplainability(value); return *this;} /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithExplainability(Aws::String&& value) { SetExplainability(std::move(value)); return *this;} /** *

The Amazon S3 prefix to the explainability artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithExplainability(const char* value) { SetExplainability(value); return *this;} /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline const Aws::String& GetModelInsights() const{ return m_modelInsights; } /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline bool ModelInsightsHasBeenSet() const { return m_modelInsightsHasBeenSet; } /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline void SetModelInsights(const Aws::String& value) { m_modelInsightsHasBeenSet = true; m_modelInsights = value; } /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline void SetModelInsights(Aws::String&& value) { m_modelInsightsHasBeenSet = true; m_modelInsights = std::move(value); } /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline void SetModelInsights(const char* value) { m_modelInsightsHasBeenSet = true; m_modelInsights.assign(value); } /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithModelInsights(const Aws::String& value) { SetModelInsights(value); return *this;} /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithModelInsights(Aws::String&& value) { SetModelInsights(std::move(value)); return *this;} /** *

The Amazon S3 prefix to the model insight artifacts generated for the AutoML * candidate.

*/ inline CandidateArtifactLocations& WithModelInsights(const char* value) { SetModelInsights(value); return *this;} /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline const Aws::String& GetBacktestResults() const{ return m_backtestResults; } /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline bool BacktestResultsHasBeenSet() const { return m_backtestResultsHasBeenSet; } /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline void SetBacktestResults(const Aws::String& value) { m_backtestResultsHasBeenSet = true; m_backtestResults = value; } /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline void SetBacktestResults(Aws::String&& value) { m_backtestResultsHasBeenSet = true; m_backtestResults = std::move(value); } /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline void SetBacktestResults(const char* value) { m_backtestResultsHasBeenSet = true; m_backtestResults.assign(value); } /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline CandidateArtifactLocations& WithBacktestResults(const Aws::String& value) { SetBacktestResults(value); return *this;} /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline CandidateArtifactLocations& WithBacktestResults(Aws::String&& value) { SetBacktestResults(std::move(value)); return *this;} /** *

The Amazon S3 prefix to the accuracy metrics and the inference results * observed over the testing window. Available only for the time-series forecasting * problem type.

*/ inline CandidateArtifactLocations& WithBacktestResults(const char* value) { SetBacktestResults(value); return *this;} private: Aws::String m_explainability; bool m_explainabilityHasBeenSet = false; Aws::String m_modelInsights; bool m_modelInsightsHasBeenSet = false; Aws::String m_backtestResults; bool m_backtestResultsHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws