AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
MonitoringScheduleConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/sagemaker/model/ScheduleConfig.h>
9#include <aws/sagemaker/model/MonitoringJobDefinition.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/sagemaker/model/MonitoringType.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace SageMaker
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_SAGEMAKER_API MonitoringScheduleConfig();
41 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const ScheduleConfig& GetScheduleConfig() const{ return m_scheduleConfig; }
49 inline bool ScheduleConfigHasBeenSet() const { return m_scheduleConfigHasBeenSet; }
50 inline void SetScheduleConfig(const ScheduleConfig& value) { m_scheduleConfigHasBeenSet = true; m_scheduleConfig = value; }
51 inline void SetScheduleConfig(ScheduleConfig&& value) { m_scheduleConfigHasBeenSet = true; m_scheduleConfig = std::move(value); }
52 inline MonitoringScheduleConfig& WithScheduleConfig(const ScheduleConfig& value) { SetScheduleConfig(value); return *this;}
53 inline MonitoringScheduleConfig& WithScheduleConfig(ScheduleConfig&& value) { SetScheduleConfig(std::move(value)); return *this;}
55
57
60 inline const MonitoringJobDefinition& GetMonitoringJobDefinition() const{ return m_monitoringJobDefinition; }
61 inline bool MonitoringJobDefinitionHasBeenSet() const { return m_monitoringJobDefinitionHasBeenSet; }
62 inline void SetMonitoringJobDefinition(const MonitoringJobDefinition& value) { m_monitoringJobDefinitionHasBeenSet = true; m_monitoringJobDefinition = value; }
63 inline void SetMonitoringJobDefinition(MonitoringJobDefinition&& value) { m_monitoringJobDefinitionHasBeenSet = true; m_monitoringJobDefinition = std::move(value); }
67
69
72 inline const Aws::String& GetMonitoringJobDefinitionName() const{ return m_monitoringJobDefinitionName; }
73 inline bool MonitoringJobDefinitionNameHasBeenSet() const { return m_monitoringJobDefinitionNameHasBeenSet; }
74 inline void SetMonitoringJobDefinitionName(const Aws::String& value) { m_monitoringJobDefinitionNameHasBeenSet = true; m_monitoringJobDefinitionName = value; }
75 inline void SetMonitoringJobDefinitionName(Aws::String&& value) { m_monitoringJobDefinitionNameHasBeenSet = true; m_monitoringJobDefinitionName = std::move(value); }
76 inline void SetMonitoringJobDefinitionName(const char* value) { m_monitoringJobDefinitionNameHasBeenSet = true; m_monitoringJobDefinitionName.assign(value); }
81
83
86 inline const MonitoringType& GetMonitoringType() const{ return m_monitoringType; }
87 inline bool MonitoringTypeHasBeenSet() const { return m_monitoringTypeHasBeenSet; }
88 inline void SetMonitoringType(const MonitoringType& value) { m_monitoringTypeHasBeenSet = true; m_monitoringType = value; }
89 inline void SetMonitoringType(MonitoringType&& value) { m_monitoringTypeHasBeenSet = true; m_monitoringType = std::move(value); }
90 inline MonitoringScheduleConfig& WithMonitoringType(const MonitoringType& value) { SetMonitoringType(value); return *this;}
91 inline MonitoringScheduleConfig& WithMonitoringType(MonitoringType&& value) { SetMonitoringType(std::move(value)); return *this;}
93 private:
94
95 ScheduleConfig m_scheduleConfig;
96 bool m_scheduleConfigHasBeenSet = false;
97
98 MonitoringJobDefinition m_monitoringJobDefinition;
99 bool m_monitoringJobDefinitionHasBeenSet = false;
100
101 Aws::String m_monitoringJobDefinitionName;
102 bool m_monitoringJobDefinitionNameHasBeenSet = false;
103
104 MonitoringType m_monitoringType;
105 bool m_monitoringTypeHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace SageMaker
110} // namespace Aws
MonitoringScheduleConfig & WithMonitoringType(MonitoringType &&value)
AWS_SAGEMAKER_API MonitoringScheduleConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
MonitoringScheduleConfig & WithMonitoringType(const MonitoringType &value)
MonitoringScheduleConfig & WithMonitoringJobDefinition(const MonitoringJobDefinition &value)
void SetMonitoringJobDefinitionName(const Aws::String &value)
MonitoringScheduleConfig & WithScheduleConfig(ScheduleConfig &&value)
void SetMonitoringJobDefinition(const MonitoringJobDefinition &value)
const MonitoringJobDefinition & GetMonitoringJobDefinition() const
MonitoringScheduleConfig & WithMonitoringJobDefinitionName(const Aws::String &value)
void SetMonitoringJobDefinition(MonitoringJobDefinition &&value)
MonitoringScheduleConfig & WithScheduleConfig(const ScheduleConfig &value)
AWS_SAGEMAKER_API MonitoringScheduleConfig(Aws::Utils::Json::JsonView jsonValue)
MonitoringScheduleConfig & WithMonitoringJobDefinition(MonitoringJobDefinition &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
MonitoringScheduleConfig & WithMonitoringJobDefinitionName(const char *value)
MonitoringScheduleConfig & WithMonitoringJobDefinitionName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue