AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DriftCheckModelDataQuality.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/MetricsSource.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMaker
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_SAGEMAKER_API DriftCheckModelDataQuality();
38 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const MetricsSource& GetStatistics() const{ return m_statistics; }
46 inline bool StatisticsHasBeenSet() const { return m_statisticsHasBeenSet; }
47 inline void SetStatistics(const MetricsSource& value) { m_statisticsHasBeenSet = true; m_statistics = value; }
48 inline void SetStatistics(MetricsSource&& value) { m_statisticsHasBeenSet = true; m_statistics = std::move(value); }
49 inline DriftCheckModelDataQuality& WithStatistics(const MetricsSource& value) { SetStatistics(value); return *this;}
50 inline DriftCheckModelDataQuality& WithStatistics(MetricsSource&& value) { SetStatistics(std::move(value)); return *this;}
52
54
57 inline const MetricsSource& GetConstraints() const{ return m_constraints; }
58 inline bool ConstraintsHasBeenSet() const { return m_constraintsHasBeenSet; }
59 inline void SetConstraints(const MetricsSource& value) { m_constraintsHasBeenSet = true; m_constraints = value; }
60 inline void SetConstraints(MetricsSource&& value) { m_constraintsHasBeenSet = true; m_constraints = std::move(value); }
61 inline DriftCheckModelDataQuality& WithConstraints(const MetricsSource& value) { SetConstraints(value); return *this;}
62 inline DriftCheckModelDataQuality& WithConstraints(MetricsSource&& value) { SetConstraints(std::move(value)); return *this;}
64 private:
65
66 MetricsSource m_statistics;
67 bool m_statisticsHasBeenSet = false;
68
69 MetricsSource m_constraints;
70 bool m_constraintsHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace SageMaker
75} // namespace Aws
DriftCheckModelDataQuality & WithStatistics(MetricsSource &&value)
AWS_SAGEMAKER_API DriftCheckModelDataQuality(Aws::Utils::Json::JsonView jsonValue)
DriftCheckModelDataQuality & WithConstraints(MetricsSource &&value)
DriftCheckModelDataQuality & WithConstraints(const MetricsSource &value)
DriftCheckModelDataQuality & WithStatistics(const MetricsSource &value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API DriftCheckModelDataQuality & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue