AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
MonitoringAppSpecification.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/sagemaker/SageMaker_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace SageMaker {
21namespace Model {
22
30 public:
31 AWS_SAGEMAKER_API MonitoringAppSpecification() = default;
34 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetImageUri() const { return m_imageUri; }
41 inline bool ImageUriHasBeenSet() const { return m_imageUriHasBeenSet; }
42 template <typename ImageUriT = Aws::String>
43 void SetImageUri(ImageUriT&& value) {
44 m_imageUriHasBeenSet = true;
45 m_imageUri = std::forward<ImageUriT>(value);
46 }
47 template <typename ImageUriT = Aws::String>
49 SetImageUri(std::forward<ImageUriT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::Vector<Aws::String>& GetContainerEntrypoint() const { return m_containerEntrypoint; }
59 inline bool ContainerEntrypointHasBeenSet() const { return m_containerEntrypointHasBeenSet; }
60 template <typename ContainerEntrypointT = Aws::Vector<Aws::String>>
61 void SetContainerEntrypoint(ContainerEntrypointT&& value) {
62 m_containerEntrypointHasBeenSet = true;
63 m_containerEntrypoint = std::forward<ContainerEntrypointT>(value);
64 }
65 template <typename ContainerEntrypointT = Aws::Vector<Aws::String>>
66 MonitoringAppSpecification& WithContainerEntrypoint(ContainerEntrypointT&& value) {
67 SetContainerEntrypoint(std::forward<ContainerEntrypointT>(value));
68 return *this;
69 }
70 template <typename ContainerEntrypointT = Aws::String>
71 MonitoringAppSpecification& AddContainerEntrypoint(ContainerEntrypointT&& value) {
72 m_containerEntrypointHasBeenSet = true;
73 m_containerEntrypoint.emplace_back(std::forward<ContainerEntrypointT>(value));
74 return *this;
75 }
77
79
82 inline const Aws::Vector<Aws::String>& GetContainerArguments() const { return m_containerArguments; }
83 inline bool ContainerArgumentsHasBeenSet() const { return m_containerArgumentsHasBeenSet; }
84 template <typename ContainerArgumentsT = Aws::Vector<Aws::String>>
85 void SetContainerArguments(ContainerArgumentsT&& value) {
86 m_containerArgumentsHasBeenSet = true;
87 m_containerArguments = std::forward<ContainerArgumentsT>(value);
88 }
89 template <typename ContainerArgumentsT = Aws::Vector<Aws::String>>
90 MonitoringAppSpecification& WithContainerArguments(ContainerArgumentsT&& value) {
91 SetContainerArguments(std::forward<ContainerArgumentsT>(value));
92 return *this;
93 }
94 template <typename ContainerArgumentsT = Aws::String>
95 MonitoringAppSpecification& AddContainerArguments(ContainerArgumentsT&& value) {
96 m_containerArgumentsHasBeenSet = true;
97 m_containerArguments.emplace_back(std::forward<ContainerArgumentsT>(value));
98 return *this;
99 }
101
103
109 inline const Aws::String& GetRecordPreprocessorSourceUri() const { return m_recordPreprocessorSourceUri; }
110 inline bool RecordPreprocessorSourceUriHasBeenSet() const { return m_recordPreprocessorSourceUriHasBeenSet; }
111 template <typename RecordPreprocessorSourceUriT = Aws::String>
112 void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) {
113 m_recordPreprocessorSourceUriHasBeenSet = true;
114 m_recordPreprocessorSourceUri = std::forward<RecordPreprocessorSourceUriT>(value);
115 }
116 template <typename RecordPreprocessorSourceUriT = Aws::String>
117 MonitoringAppSpecification& WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) {
118 SetRecordPreprocessorSourceUri(std::forward<RecordPreprocessorSourceUriT>(value));
119 return *this;
120 }
122
124
128 inline const Aws::String& GetPostAnalyticsProcessorSourceUri() const { return m_postAnalyticsProcessorSourceUri; }
129 inline bool PostAnalyticsProcessorSourceUriHasBeenSet() const { return m_postAnalyticsProcessorSourceUriHasBeenSet; }
130 template <typename PostAnalyticsProcessorSourceUriT = Aws::String>
131 void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) {
132 m_postAnalyticsProcessorSourceUriHasBeenSet = true;
133 m_postAnalyticsProcessorSourceUri = std::forward<PostAnalyticsProcessorSourceUriT>(value);
134 }
135 template <typename PostAnalyticsProcessorSourceUriT = Aws::String>
136 MonitoringAppSpecification& WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) {
137 SetPostAnalyticsProcessorSourceUri(std::forward<PostAnalyticsProcessorSourceUriT>(value));
138 return *this;
139 }
141 private:
142 Aws::String m_imageUri;
143
144 Aws::Vector<Aws::String> m_containerEntrypoint;
145
146 Aws::Vector<Aws::String> m_containerArguments;
147
148 Aws::String m_recordPreprocessorSourceUri;
149
150 Aws::String m_postAnalyticsProcessorSourceUri;
151 bool m_imageUriHasBeenSet = false;
152 bool m_containerEntrypointHasBeenSet = false;
153 bool m_containerArgumentsHasBeenSet = false;
154 bool m_recordPreprocessorSourceUriHasBeenSet = false;
155 bool m_postAnalyticsProcessorSourceUriHasBeenSet = false;
156};
157
158} // namespace Model
159} // namespace SageMaker
160} // namespace Aws
MonitoringAppSpecification & WithContainerEntrypoint(ContainerEntrypointT &&value)
MonitoringAppSpecification & AddContainerArguments(ContainerArgumentsT &&value)
MonitoringAppSpecification & WithImageUri(ImageUriT &&value)
MonitoringAppSpecification & AddContainerEntrypoint(ContainerEntrypointT &&value)
MonitoringAppSpecification & WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
AWS_SAGEMAKER_API MonitoringAppSpecification & operator=(Aws::Utils::Json::JsonView jsonValue)
MonitoringAppSpecification & WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
const Aws::Vector< Aws::String > & GetContainerArguments() const
AWS_SAGEMAKER_API MonitoringAppSpecification()=default
AWS_SAGEMAKER_API MonitoringAppSpecification(Aws::Utils::Json::JsonView jsonValue)
MonitoringAppSpecification & WithContainerArguments(ContainerArgumentsT &&value)
const Aws::Vector< Aws::String > & GetContainerEntrypoint() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue