AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
StartVectorEnrichmentJobResult.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/sagemaker-geospatial/model/VectorEnrichmentJobInputConfig.h>
11#include <aws/sagemaker-geospatial/model/VectorEnrichmentJobConfig.h>
12#include <aws/sagemaker-geospatial/model/VectorEnrichmentJobStatus.h>
13#include <aws/core/utils/memory/stl/AWSMap.h>
14#include <aws/sagemaker-geospatial/model/VectorEnrichmentJobType.h>
15#include <utility>
16
17namespace Aws
18{
19template<typename RESULT_TYPE>
20class AmazonWebServiceResult;
21
22namespace Utils
23{
24namespace Json
25{
26 class JsonValue;
27} // namespace Json
28} // namespace Utils
29namespace SageMakerGeospatial
30{
31namespace Model
32{
34 {
35 public:
36 AWS_SAGEMAKERGEOSPATIAL_API StartVectorEnrichmentJobResult() = default;
39
40
42
45 inline const Aws::String& GetArn() const { return m_arn; }
46 template<typename ArnT = Aws::String>
47 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
48 template<typename ArnT = Aws::String>
49 StartVectorEnrichmentJobResult& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
51
53
56 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
57 template<typename CreationTimeT = Aws::Utils::DateTime>
58 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
59 template<typename CreationTimeT = Aws::Utils::DateTime>
60 StartVectorEnrichmentJobResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
62
64
67 inline int GetDurationInSeconds() const { return m_durationInSeconds; }
68 inline void SetDurationInSeconds(int value) { m_durationInSecondsHasBeenSet = true; m_durationInSeconds = value; }
71
73
77 inline const Aws::String& GetExecutionRoleArn() const { return m_executionRoleArn; }
78 template<typename ExecutionRoleArnT = Aws::String>
79 void SetExecutionRoleArn(ExecutionRoleArnT&& value) { m_executionRoleArnHasBeenSet = true; m_executionRoleArn = std::forward<ExecutionRoleArnT>(value); }
80 template<typename ExecutionRoleArnT = Aws::String>
81 StartVectorEnrichmentJobResult& WithExecutionRoleArn(ExecutionRoleArnT&& value) { SetExecutionRoleArn(std::forward<ExecutionRoleArnT>(value)); return *this;}
83
85
88 inline const VectorEnrichmentJobInputConfig& GetInputConfig() const { return m_inputConfig; }
89 template<typename InputConfigT = VectorEnrichmentJobInputConfig>
90 void SetInputConfig(InputConfigT&& value) { m_inputConfigHasBeenSet = true; m_inputConfig = std::forward<InputConfigT>(value); }
91 template<typename InputConfigT = VectorEnrichmentJobInputConfig>
92 StartVectorEnrichmentJobResult& WithInputConfig(InputConfigT&& value) { SetInputConfig(std::forward<InputConfigT>(value)); return *this;}
94
96
99 inline const VectorEnrichmentJobConfig& GetJobConfig() const { return m_jobConfig; }
100 template<typename JobConfigT = VectorEnrichmentJobConfig>
101 void SetJobConfig(JobConfigT&& value) { m_jobConfigHasBeenSet = true; m_jobConfig = std::forward<JobConfigT>(value); }
102 template<typename JobConfigT = VectorEnrichmentJobConfig>
103 StartVectorEnrichmentJobResult& WithJobConfig(JobConfigT&& value) { SetJobConfig(std::forward<JobConfigT>(value)); return *this;}
105
107
110 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
111 template<typename KmsKeyIdT = Aws::String>
112 void SetKmsKeyId(KmsKeyIdT&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::forward<KmsKeyIdT>(value); }
113 template<typename KmsKeyIdT = Aws::String>
114 StartVectorEnrichmentJobResult& WithKmsKeyId(KmsKeyIdT&& value) { SetKmsKeyId(std::forward<KmsKeyIdT>(value)); return *this;}
116
118
121 inline const Aws::String& GetName() const { return m_name; }
122 template<typename NameT = Aws::String>
123 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
124 template<typename NameT = Aws::String>
125 StartVectorEnrichmentJobResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
127
129
132 inline VectorEnrichmentJobStatus GetStatus() const { return m_status; }
133 inline void SetStatus(VectorEnrichmentJobStatus value) { m_statusHasBeenSet = true; m_status = value; }
136
138
141 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
142 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
143 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
144 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
145 StartVectorEnrichmentJobResult& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
146 template<typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
147 StartVectorEnrichmentJobResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
148 m_tagsHasBeenSet = true; m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value)); return *this;
149 }
151
153
156 inline VectorEnrichmentJobType GetType() const { return m_type; }
157 inline void SetType(VectorEnrichmentJobType value) { m_typeHasBeenSet = true; m_type = value; }
160
162
163 inline const Aws::String& GetRequestId() const { return m_requestId; }
164 template<typename RequestIdT = Aws::String>
165 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
166 template<typename RequestIdT = Aws::String>
167 StartVectorEnrichmentJobResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
169 private:
170
171 Aws::String m_arn;
172 bool m_arnHasBeenSet = false;
173
174 Aws::Utils::DateTime m_creationTime{};
175 bool m_creationTimeHasBeenSet = false;
176
177 int m_durationInSeconds{0};
178 bool m_durationInSecondsHasBeenSet = false;
179
180 Aws::String m_executionRoleArn;
181 bool m_executionRoleArnHasBeenSet = false;
182
183 VectorEnrichmentJobInputConfig m_inputConfig;
184 bool m_inputConfigHasBeenSet = false;
185
186 VectorEnrichmentJobConfig m_jobConfig;
187 bool m_jobConfigHasBeenSet = false;
188
189 Aws::String m_kmsKeyId;
190 bool m_kmsKeyIdHasBeenSet = false;
191
192 Aws::String m_name;
193 bool m_nameHasBeenSet = false;
194
196 bool m_statusHasBeenSet = false;
197
199 bool m_tagsHasBeenSet = false;
200
202 bool m_typeHasBeenSet = false;
203
204 Aws::String m_requestId;
205 bool m_requestIdHasBeenSet = false;
206 };
207
208} // namespace Model
209} // namespace SageMakerGeospatial
210} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API StartVectorEnrichmentJobResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
StartVectorEnrichmentJobResult & AddTags(TagsKeyT &&key, TagsValueT &&value)
StartVectorEnrichmentJobResult & WithType(VectorEnrichmentJobType value)
StartVectorEnrichmentJobResult & WithInputConfig(InputConfigT &&value)
StartVectorEnrichmentJobResult & WithRequestId(RequestIdT &&value)
AWS_SAGEMAKERGEOSPATIAL_API StartVectorEnrichmentJobResult()=default
StartVectorEnrichmentJobResult & WithExecutionRoleArn(ExecutionRoleArnT &&value)
StartVectorEnrichmentJobResult & WithJobConfig(JobConfigT &&value)
AWS_SAGEMAKERGEOSPATIAL_API StartVectorEnrichmentJobResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
StartVectorEnrichmentJobResult & WithStatus(VectorEnrichmentJobStatus value)
StartVectorEnrichmentJobResult & WithCreationTime(CreationTimeT &&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
Aws::Utils::Json::JsonValue JsonValue