/** * 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 { /** *

Contains explainability metrics for a model.

See Also:

AWS * API Reference

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

The explainability report for a model.

*/ inline const MetricsSource& GetReport() const{ return m_report; } /** *

The explainability report for a model.

*/ inline bool ReportHasBeenSet() const { return m_reportHasBeenSet; } /** *

The explainability report for a model.

*/ inline void SetReport(const MetricsSource& value) { m_reportHasBeenSet = true; m_report = value; } /** *

The explainability report for a model.

*/ inline void SetReport(MetricsSource&& value) { m_reportHasBeenSet = true; m_report = std::move(value); } /** *

The explainability report for a model.

*/ inline Explainability& WithReport(const MetricsSource& value) { SetReport(value); return *this;} /** *

The explainability report for a model.

*/ inline Explainability& WithReport(MetricsSource&& value) { SetReport(std::move(value)); return *this;} private: MetricsSource m_report; bool m_reportHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws