/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains explainability metrics for a model.See Also:
AWS
* API Reference
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