AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DataQualityAppSpecification.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSMap.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/sagemaker/SageMaker_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMaker {
22namespace Model {
23
31 public:
32 AWS_SAGEMAKER_API DataQualityAppSpecification() = default;
35 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetImageUri() const { return m_imageUri; }
42 inline bool ImageUriHasBeenSet() const { return m_imageUriHasBeenSet; }
43 template <typename ImageUriT = Aws::String>
44 void SetImageUri(ImageUriT&& value) {
45 m_imageUriHasBeenSet = true;
46 m_imageUri = std::forward<ImageUriT>(value);
47 }
48 template <typename ImageUriT = Aws::String>
50 SetImageUri(std::forward<ImageUriT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::Vector<Aws::String>& GetContainerEntrypoint() const { return m_containerEntrypoint; }
60 inline bool ContainerEntrypointHasBeenSet() const { return m_containerEntrypointHasBeenSet; }
61 template <typename ContainerEntrypointT = Aws::Vector<Aws::String>>
62 void SetContainerEntrypoint(ContainerEntrypointT&& value) {
63 m_containerEntrypointHasBeenSet = true;
64 m_containerEntrypoint = std::forward<ContainerEntrypointT>(value);
65 }
66 template <typename ContainerEntrypointT = Aws::Vector<Aws::String>>
68 SetContainerEntrypoint(std::forward<ContainerEntrypointT>(value));
69 return *this;
70 }
71 template <typename ContainerEntrypointT = Aws::String>
72 DataQualityAppSpecification& AddContainerEntrypoint(ContainerEntrypointT&& value) {
73 m_containerEntrypointHasBeenSet = true;
74 m_containerEntrypoint.emplace_back(std::forward<ContainerEntrypointT>(value));
75 return *this;
76 }
78
80
83 inline const Aws::Vector<Aws::String>& GetContainerArguments() const { return m_containerArguments; }
84 inline bool ContainerArgumentsHasBeenSet() const { return m_containerArgumentsHasBeenSet; }
85 template <typename ContainerArgumentsT = Aws::Vector<Aws::String>>
86 void SetContainerArguments(ContainerArgumentsT&& value) {
87 m_containerArgumentsHasBeenSet = true;
88 m_containerArguments = std::forward<ContainerArgumentsT>(value);
89 }
90 template <typename ContainerArgumentsT = Aws::Vector<Aws::String>>
92 SetContainerArguments(std::forward<ContainerArgumentsT>(value));
93 return *this;
94 }
95 template <typename ContainerArgumentsT = Aws::String>
96 DataQualityAppSpecification& AddContainerArguments(ContainerArgumentsT&& value) {
97 m_containerArgumentsHasBeenSet = true;
98 m_containerArguments.emplace_back(std::forward<ContainerArgumentsT>(value));
99 return *this;
100 }
102
104
110 inline const Aws::String& GetRecordPreprocessorSourceUri() const { return m_recordPreprocessorSourceUri; }
111 inline bool RecordPreprocessorSourceUriHasBeenSet() const { return m_recordPreprocessorSourceUriHasBeenSet; }
112 template <typename RecordPreprocessorSourceUriT = Aws::String>
113 void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) {
114 m_recordPreprocessorSourceUriHasBeenSet = true;
115 m_recordPreprocessorSourceUri = std::forward<RecordPreprocessorSourceUriT>(value);
116 }
117 template <typename RecordPreprocessorSourceUriT = Aws::String>
118 DataQualityAppSpecification& WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) {
119 SetRecordPreprocessorSourceUri(std::forward<RecordPreprocessorSourceUriT>(value));
120 return *this;
121 }
123
125
129 inline const Aws::String& GetPostAnalyticsProcessorSourceUri() const { return m_postAnalyticsProcessorSourceUri; }
130 inline bool PostAnalyticsProcessorSourceUriHasBeenSet() const { return m_postAnalyticsProcessorSourceUriHasBeenSet; }
131 template <typename PostAnalyticsProcessorSourceUriT = Aws::String>
132 void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) {
133 m_postAnalyticsProcessorSourceUriHasBeenSet = true;
134 m_postAnalyticsProcessorSourceUri = std::forward<PostAnalyticsProcessorSourceUriT>(value);
135 }
136 template <typename PostAnalyticsProcessorSourceUriT = Aws::String>
137 DataQualityAppSpecification& WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) {
138 SetPostAnalyticsProcessorSourceUri(std::forward<PostAnalyticsProcessorSourceUriT>(value));
139 return *this;
140 }
142
144
148 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const { return m_environment; }
149 inline bool EnvironmentHasBeenSet() const { return m_environmentHasBeenSet; }
150 template <typename EnvironmentT = Aws::Map<Aws::String, Aws::String>>
151 void SetEnvironment(EnvironmentT&& value) {
152 m_environmentHasBeenSet = true;
153 m_environment = std::forward<EnvironmentT>(value);
154 }
155 template <typename EnvironmentT = Aws::Map<Aws::String, Aws::String>>
157 SetEnvironment(std::forward<EnvironmentT>(value));
158 return *this;
159 }
160 template <typename EnvironmentKeyT = Aws::String, typename EnvironmentValueT = Aws::String>
161 DataQualityAppSpecification& AddEnvironment(EnvironmentKeyT&& key, EnvironmentValueT&& value) {
162 m_environmentHasBeenSet = true;
163 m_environment.emplace(std::forward<EnvironmentKeyT>(key), std::forward<EnvironmentValueT>(value));
164 return *this;
165 }
167 private:
168 Aws::String m_imageUri;
169
170 Aws::Vector<Aws::String> m_containerEntrypoint;
171
172 Aws::Vector<Aws::String> m_containerArguments;
173
174 Aws::String m_recordPreprocessorSourceUri;
175
176 Aws::String m_postAnalyticsProcessorSourceUri;
177
179 bool m_imageUriHasBeenSet = false;
180 bool m_containerEntrypointHasBeenSet = false;
181 bool m_containerArgumentsHasBeenSet = false;
182 bool m_recordPreprocessorSourceUriHasBeenSet = false;
183 bool m_postAnalyticsProcessorSourceUriHasBeenSet = false;
184 bool m_environmentHasBeenSet = false;
185};
186
187} // namespace Model
188} // namespace SageMaker
189} // namespace Aws
const Aws::Vector< Aws::String > & GetContainerArguments() const
DataQualityAppSpecification & WithEnvironment(EnvironmentT &&value)
DataQualityAppSpecification & WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
AWS_SAGEMAKER_API DataQualityAppSpecification(Aws::Utils::Json::JsonView jsonValue)
DataQualityAppSpecification & AddContainerArguments(ContainerArgumentsT &&value)
const Aws::Map< Aws::String, Aws::String > & GetEnvironment() const
DataQualityAppSpecification & AddContainerEntrypoint(ContainerEntrypointT &&value)
AWS_SAGEMAKER_API DataQualityAppSpecification & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetContainerEntrypoint() const
DataQualityAppSpecification & AddEnvironment(EnvironmentKeyT &&key, EnvironmentValueT &&value)
DataQualityAppSpecification & WithImageUri(ImageUriT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
DataQualityAppSpecification & WithContainerArguments(ContainerArgumentsT &&value)
AWS_SAGEMAKER_API DataQualityAppSpecification()=default
void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
DataQualityAppSpecification & WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
DataQualityAppSpecification & WithContainerEntrypoint(ContainerEntrypointT &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue