AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DriftCheckBaselines.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/DriftCheckBias.h>
9#include <aws/sagemaker/model/DriftCheckExplainability.h>
10#include <aws/sagemaker/model/DriftCheckModelDataQuality.h>
11#include <aws/sagemaker/model/DriftCheckModelQuality.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Utils {
17namespace Json {
18class JsonValue;
19class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker {
23namespace Model {
24
32 public:
33 AWS_SAGEMAKER_API DriftCheckBaselines() = default;
34 AWS_SAGEMAKER_API DriftCheckBaselines(Aws::Utils::Json::JsonView jsonValue);
36 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
43 inline const DriftCheckBias& GetBias() const { return m_bias; }
44 inline bool BiasHasBeenSet() const { return m_biasHasBeenSet; }
45 template <typename BiasT = DriftCheckBias>
46 void SetBias(BiasT&& value) {
47 m_biasHasBeenSet = true;
48 m_bias = std::forward<BiasT>(value);
49 }
50 template <typename BiasT = DriftCheckBias>
51 DriftCheckBaselines& WithBias(BiasT&& value) {
52 SetBias(std::forward<BiasT>(value));
53 return *this;
54 }
56
58
62 inline const DriftCheckExplainability& GetExplainability() const { return m_explainability; }
63 inline bool ExplainabilityHasBeenSet() const { return m_explainabilityHasBeenSet; }
64 template <typename ExplainabilityT = DriftCheckExplainability>
65 void SetExplainability(ExplainabilityT&& value) {
66 m_explainabilityHasBeenSet = true;
67 m_explainability = std::forward<ExplainabilityT>(value);
68 }
69 template <typename ExplainabilityT = DriftCheckExplainability>
70 DriftCheckBaselines& WithExplainability(ExplainabilityT&& value) {
71 SetExplainability(std::forward<ExplainabilityT>(value));
72 return *this;
73 }
75
77
81 inline const DriftCheckModelQuality& GetModelQuality() const { return m_modelQuality; }
82 inline bool ModelQualityHasBeenSet() const { return m_modelQualityHasBeenSet; }
83 template <typename ModelQualityT = DriftCheckModelQuality>
84 void SetModelQuality(ModelQualityT&& value) {
85 m_modelQualityHasBeenSet = true;
86 m_modelQuality = std::forward<ModelQualityT>(value);
87 }
88 template <typename ModelQualityT = DriftCheckModelQuality>
89 DriftCheckBaselines& WithModelQuality(ModelQualityT&& value) {
90 SetModelQuality(std::forward<ModelQualityT>(value));
91 return *this;
92 }
94
96
100 inline const DriftCheckModelDataQuality& GetModelDataQuality() const { return m_modelDataQuality; }
101 inline bool ModelDataQualityHasBeenSet() const { return m_modelDataQualityHasBeenSet; }
102 template <typename ModelDataQualityT = DriftCheckModelDataQuality>
103 void SetModelDataQuality(ModelDataQualityT&& value) {
104 m_modelDataQualityHasBeenSet = true;
105 m_modelDataQuality = std::forward<ModelDataQualityT>(value);
106 }
107 template <typename ModelDataQualityT = DriftCheckModelDataQuality>
108 DriftCheckBaselines& WithModelDataQuality(ModelDataQualityT&& value) {
109 SetModelDataQuality(std::forward<ModelDataQualityT>(value));
110 return *this;
111 }
113 private:
114 DriftCheckBias m_bias;
115
116 DriftCheckExplainability m_explainability;
117
118 DriftCheckModelQuality m_modelQuality;
119
120 DriftCheckModelDataQuality m_modelDataQuality;
121 bool m_biasHasBeenSet = false;
122 bool m_explainabilityHasBeenSet = false;
123 bool m_modelQualityHasBeenSet = false;
124 bool m_modelDataQualityHasBeenSet = false;
125};
126
127} // namespace Model
128} // namespace SageMaker
129} // namespace Aws
AWS_SAGEMAKER_API DriftCheckBaselines()=default
const DriftCheckModelQuality & GetModelQuality() const
const DriftCheckModelDataQuality & GetModelDataQuality() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetModelDataQuality(ModelDataQualityT &&value)
const DriftCheckExplainability & GetExplainability() const
DriftCheckBaselines & WithBias(BiasT &&value)
void SetExplainability(ExplainabilityT &&value)
DriftCheckBaselines & WithModelQuality(ModelQualityT &&value)
DriftCheckBaselines & WithModelDataQuality(ModelDataQualityT &&value)
AWS_SAGEMAKER_API DriftCheckBaselines(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API DriftCheckBaselines & operator=(Aws::Utils::Json::JsonView jsonValue)
DriftCheckBaselines & WithExplainability(ExplainabilityT &&value)
Aws::Utils::Json::JsonValue JsonValue