AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DataQualityAppSpecification.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace SageMaker
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_SAGEMAKER_API DataQualityAppSpecification() = default;
40 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetImageUri() const { return m_imageUri; }
48 inline bool ImageUriHasBeenSet() const { return m_imageUriHasBeenSet; }
49 template<typename ImageUriT = Aws::String>
50 void SetImageUri(ImageUriT&& value) { m_imageUriHasBeenSet = true; m_imageUri = std::forward<ImageUriT>(value); }
51 template<typename ImageUriT = Aws::String>
52 DataQualityAppSpecification& WithImageUri(ImageUriT&& value) { SetImageUri(std::forward<ImageUriT>(value)); return *this;}
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) { m_containerEntrypointHasBeenSet = true; m_containerEntrypoint = std::forward<ContainerEntrypointT>(value); }
63 template<typename ContainerEntrypointT = Aws::Vector<Aws::String>>
64 DataQualityAppSpecification& WithContainerEntrypoint(ContainerEntrypointT&& value) { SetContainerEntrypoint(std::forward<ContainerEntrypointT>(value)); return *this;}
65 template<typename ContainerEntrypointT = Aws::String>
66 DataQualityAppSpecification& AddContainerEntrypoint(ContainerEntrypointT&& value) { m_containerEntrypointHasBeenSet = true; m_containerEntrypoint.emplace_back(std::forward<ContainerEntrypointT>(value)); return *this; }
68
70
73 inline const Aws::Vector<Aws::String>& GetContainerArguments() const { return m_containerArguments; }
74 inline bool ContainerArgumentsHasBeenSet() const { return m_containerArgumentsHasBeenSet; }
75 template<typename ContainerArgumentsT = Aws::Vector<Aws::String>>
76 void SetContainerArguments(ContainerArgumentsT&& value) { m_containerArgumentsHasBeenSet = true; m_containerArguments = std::forward<ContainerArgumentsT>(value); }
77 template<typename ContainerArgumentsT = Aws::Vector<Aws::String>>
78 DataQualityAppSpecification& WithContainerArguments(ContainerArgumentsT&& value) { SetContainerArguments(std::forward<ContainerArgumentsT>(value)); return *this;}
79 template<typename ContainerArgumentsT = Aws::String>
80 DataQualityAppSpecification& AddContainerArguments(ContainerArgumentsT&& value) { m_containerArgumentsHasBeenSet = true; m_containerArguments.emplace_back(std::forward<ContainerArgumentsT>(value)); return *this; }
82
84
90 inline const Aws::String& GetRecordPreprocessorSourceUri() const { return m_recordPreprocessorSourceUri; }
91 inline bool RecordPreprocessorSourceUriHasBeenSet() const { return m_recordPreprocessorSourceUriHasBeenSet; }
92 template<typename RecordPreprocessorSourceUriT = Aws::String>
93 void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) { m_recordPreprocessorSourceUriHasBeenSet = true; m_recordPreprocessorSourceUri = std::forward<RecordPreprocessorSourceUriT>(value); }
94 template<typename RecordPreprocessorSourceUriT = Aws::String>
95 DataQualityAppSpecification& WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) { SetRecordPreprocessorSourceUri(std::forward<RecordPreprocessorSourceUriT>(value)); return *this;}
97
99
103 inline const Aws::String& GetPostAnalyticsProcessorSourceUri() const { return m_postAnalyticsProcessorSourceUri; }
104 inline bool PostAnalyticsProcessorSourceUriHasBeenSet() const { return m_postAnalyticsProcessorSourceUriHasBeenSet; }
105 template<typename PostAnalyticsProcessorSourceUriT = Aws::String>
106 void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) { m_postAnalyticsProcessorSourceUriHasBeenSet = true; m_postAnalyticsProcessorSourceUri = std::forward<PostAnalyticsProcessorSourceUriT>(value); }
107 template<typename PostAnalyticsProcessorSourceUriT = Aws::String>
108 DataQualityAppSpecification& WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) { SetPostAnalyticsProcessorSourceUri(std::forward<PostAnalyticsProcessorSourceUriT>(value)); return *this;}
110
112
116 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const { return m_environment; }
117 inline bool EnvironmentHasBeenSet() const { return m_environmentHasBeenSet; }
118 template<typename EnvironmentT = Aws::Map<Aws::String, Aws::String>>
119 void SetEnvironment(EnvironmentT&& value) { m_environmentHasBeenSet = true; m_environment = std::forward<EnvironmentT>(value); }
120 template<typename EnvironmentT = Aws::Map<Aws::String, Aws::String>>
121 DataQualityAppSpecification& WithEnvironment(EnvironmentT&& value) { SetEnvironment(std::forward<EnvironmentT>(value)); return *this;}
122 template<typename EnvironmentKeyT = Aws::String, typename EnvironmentValueT = Aws::String>
123 DataQualityAppSpecification& AddEnvironment(EnvironmentKeyT&& key, EnvironmentValueT&& value) {
124 m_environmentHasBeenSet = true; m_environment.emplace(std::forward<EnvironmentKeyT>(key), std::forward<EnvironmentValueT>(value)); return *this;
125 }
127 private:
128
129 Aws::String m_imageUri;
130 bool m_imageUriHasBeenSet = false;
131
132 Aws::Vector<Aws::String> m_containerEntrypoint;
133 bool m_containerEntrypointHasBeenSet = false;
134
135 Aws::Vector<Aws::String> m_containerArguments;
136 bool m_containerArgumentsHasBeenSet = false;
137
138 Aws::String m_recordPreprocessorSourceUri;
139 bool m_recordPreprocessorSourceUriHasBeenSet = false;
140
141 Aws::String m_postAnalyticsProcessorSourceUri;
142 bool m_postAnalyticsProcessorSourceUriHasBeenSet = false;
143
145 bool m_environmentHasBeenSet = false;
146 };
147
148} // namespace Model
149} // namespace SageMaker
150} // 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