AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DriftCheckBias.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/FileSource.h>
9#include <aws/sagemaker/model/MetricsSource.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_SAGEMAKER_API DriftCheckBias();
37 AWS_SAGEMAKER_API DriftCheckBias(Aws::Utils::Json::JsonView jsonValue);
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const FileSource& GetConfigFile() const{ return m_configFile; }
47 inline bool ConfigFileHasBeenSet() const { return m_configFileHasBeenSet; }
48 inline void SetConfigFile(const FileSource& value) { m_configFileHasBeenSet = true; m_configFile = value; }
49 inline void SetConfigFile(FileSource&& value) { m_configFileHasBeenSet = true; m_configFile = std::move(value); }
50 inline DriftCheckBias& WithConfigFile(const FileSource& value) { SetConfigFile(value); return *this;}
51 inline DriftCheckBias& WithConfigFile(FileSource&& value) { SetConfigFile(std::move(value)); return *this;}
53
55
58 inline const MetricsSource& GetPreTrainingConstraints() const{ return m_preTrainingConstraints; }
59 inline bool PreTrainingConstraintsHasBeenSet() const { return m_preTrainingConstraintsHasBeenSet; }
60 inline void SetPreTrainingConstraints(const MetricsSource& value) { m_preTrainingConstraintsHasBeenSet = true; m_preTrainingConstraints = value; }
61 inline void SetPreTrainingConstraints(MetricsSource&& value) { m_preTrainingConstraintsHasBeenSet = true; m_preTrainingConstraints = std::move(value); }
63 inline DriftCheckBias& WithPreTrainingConstraints(MetricsSource&& value) { SetPreTrainingConstraints(std::move(value)); return *this;}
65
67
70 inline const MetricsSource& GetPostTrainingConstraints() const{ return m_postTrainingConstraints; }
71 inline bool PostTrainingConstraintsHasBeenSet() const { return m_postTrainingConstraintsHasBeenSet; }
72 inline void SetPostTrainingConstraints(const MetricsSource& value) { m_postTrainingConstraintsHasBeenSet = true; m_postTrainingConstraints = value; }
73 inline void SetPostTrainingConstraints(MetricsSource&& value) { m_postTrainingConstraintsHasBeenSet = true; m_postTrainingConstraints = std::move(value); }
75 inline DriftCheckBias& WithPostTrainingConstraints(MetricsSource&& value) { SetPostTrainingConstraints(std::move(value)); return *this;}
77 private:
78
79 FileSource m_configFile;
80 bool m_configFileHasBeenSet = false;
81
82 MetricsSource m_preTrainingConstraints;
83 bool m_preTrainingConstraintsHasBeenSet = false;
84
85 MetricsSource m_postTrainingConstraints;
86 bool m_postTrainingConstraintsHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace SageMaker
91} // namespace Aws
void SetConfigFile(FileSource &&value)
const MetricsSource & GetPostTrainingConstraints() const
AWS_SAGEMAKER_API DriftCheckBias(Aws::Utils::Json::JsonView jsonValue)
DriftCheckBias & WithConfigFile(FileSource &&value)
void SetPostTrainingConstraints(const MetricsSource &value)
AWS_SAGEMAKER_API DriftCheckBias & operator=(Aws::Utils::Json::JsonView jsonValue)
DriftCheckBias & WithPreTrainingConstraints(const MetricsSource &value)
DriftCheckBias & WithPreTrainingConstraints(MetricsSource &&value)
void SetConfigFile(const FileSource &value)
DriftCheckBias & WithPostTrainingConstraints(MetricsSource &&value)
const MetricsSource & GetPreTrainingConstraints() const
void SetPreTrainingConstraints(MetricsSource &&value)
void SetPreTrainingConstraints(const MetricsSource &value)
const FileSource & GetConfigFile() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
DriftCheckBias & WithConfigFile(const FileSource &value)
DriftCheckBias & WithPostTrainingConstraints(const MetricsSource &value)
void SetPostTrainingConstraints(MetricsSource &&value)
Aws::Utils::Json::JsonValue JsonValue