AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
GetRasterDataCollectionResult.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-geospatial/SageMakerGeospatial_EXPORTS.h>
11#include <aws/sagemaker-geospatial/model/DataCollectionType.h>
12#include <aws/sagemaker-geospatial/model/Filter.h>
13
14#include <utility>
15
16namespace Aws {
17template <typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils {
21namespace Json {
22class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace SageMakerGeospatial {
26namespace Model {
28 public:
29 AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult() = default;
31 AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult& operator=(
33
35
38 inline const Aws::String& GetArn() const { return m_arn; }
39 template <typename ArnT = Aws::String>
40 void SetArn(ArnT&& value) {
41 m_arnHasBeenSet = true;
42 m_arn = std::forward<ArnT>(value);
43 }
44 template <typename ArnT = Aws::String>
46 SetArn(std::forward<ArnT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetDescription() const { return m_description; }
56 template <typename DescriptionT = Aws::String>
57 void SetDescription(DescriptionT&& value) {
58 m_descriptionHasBeenSet = true;
59 m_description = std::forward<DescriptionT>(value);
60 }
61 template <typename DescriptionT = Aws::String>
63 SetDescription(std::forward<DescriptionT>(value));
64 return *this;
65 }
67
69
72 inline const Aws::String& GetDescriptionPageUrl() const { return m_descriptionPageUrl; }
73 template <typename DescriptionPageUrlT = Aws::String>
74 void SetDescriptionPageUrl(DescriptionPageUrlT&& value) {
75 m_descriptionPageUrlHasBeenSet = true;
76 m_descriptionPageUrl = std::forward<DescriptionPageUrlT>(value);
77 }
78 template <typename DescriptionPageUrlT = Aws::String>
80 SetDescriptionPageUrl(std::forward<DescriptionPageUrlT>(value));
81 return *this;
82 }
84
86
89 inline const Aws::Vector<Aws::String>& GetImageSourceBands() const { return m_imageSourceBands; }
90 template <typename ImageSourceBandsT = Aws::Vector<Aws::String>>
91 void SetImageSourceBands(ImageSourceBandsT&& value) {
92 m_imageSourceBandsHasBeenSet = true;
93 m_imageSourceBands = std::forward<ImageSourceBandsT>(value);
94 }
95 template <typename ImageSourceBandsT = Aws::Vector<Aws::String>>
97 SetImageSourceBands(std::forward<ImageSourceBandsT>(value));
98 return *this;
99 }
100 template <typename ImageSourceBandsT = Aws::String>
102 m_imageSourceBandsHasBeenSet = true;
103 m_imageSourceBands.emplace_back(std::forward<ImageSourceBandsT>(value));
104 return *this;
105 }
107
109
112 inline const Aws::String& GetName() const { return m_name; }
113 template <typename NameT = Aws::String>
114 void SetName(NameT&& value) {
115 m_nameHasBeenSet = true;
116 m_name = std::forward<NameT>(value);
117 }
118 template <typename NameT = Aws::String>
120 SetName(std::forward<NameT>(value));
121 return *this;
122 }
124
126
129 inline const Aws::Vector<Filter>& GetSupportedFilters() const { return m_supportedFilters; }
130 template <typename SupportedFiltersT = Aws::Vector<Filter>>
131 void SetSupportedFilters(SupportedFiltersT&& value) {
132 m_supportedFiltersHasBeenSet = true;
133 m_supportedFilters = std::forward<SupportedFiltersT>(value);
134 }
135 template <typename SupportedFiltersT = Aws::Vector<Filter>>
137 SetSupportedFilters(std::forward<SupportedFiltersT>(value));
138 return *this;
139 }
140 template <typename SupportedFiltersT = Filter>
142 m_supportedFiltersHasBeenSet = true;
143 m_supportedFilters.emplace_back(std::forward<SupportedFiltersT>(value));
144 return *this;
145 }
147
149
152 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
153 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
154 void SetTags(TagsT&& value) {
155 m_tagsHasBeenSet = true;
156 m_tags = std::forward<TagsT>(value);
157 }
158 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
160 SetTags(std::forward<TagsT>(value));
161 return *this;
162 }
163 template <typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
164 GetRasterDataCollectionResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
165 m_tagsHasBeenSet = true;
166 m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value));
167 return *this;
168 }
170
172
175 inline DataCollectionType GetType() const { return m_type; }
176 inline void SetType(DataCollectionType value) {
177 m_typeHasBeenSet = true;
178 m_type = value;
179 }
181 SetType(value);
182 return *this;
183 }
185
187
188 inline const Aws::String& GetRequestId() const { return m_requestId; }
189 template <typename RequestIdT = Aws::String>
190 void SetRequestId(RequestIdT&& value) {
191 m_requestIdHasBeenSet = true;
192 m_requestId = std::forward<RequestIdT>(value);
193 }
194 template <typename RequestIdT = Aws::String>
196 SetRequestId(std::forward<RequestIdT>(value));
197 return *this;
198 }
200 private:
201 Aws::String m_arn;
202
203 Aws::String m_description;
204
205 Aws::String m_descriptionPageUrl;
206
207 Aws::Vector<Aws::String> m_imageSourceBands;
208
209 Aws::String m_name;
210
211 Aws::Vector<Filter> m_supportedFilters;
212
214
216
217 Aws::String m_requestId;
218 bool m_arnHasBeenSet = false;
219 bool m_descriptionHasBeenSet = false;
220 bool m_descriptionPageUrlHasBeenSet = false;
221 bool m_imageSourceBandsHasBeenSet = false;
222 bool m_nameHasBeenSet = false;
223 bool m_supportedFiltersHasBeenSet = false;
224 bool m_tagsHasBeenSet = false;
225 bool m_typeHasBeenSet = false;
226 bool m_requestIdHasBeenSet = false;
227};
228
229} // namespace Model
230} // namespace SageMakerGeospatial
231} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetRasterDataCollectionResult & AddImageSourceBands(ImageSourceBandsT &&value)
AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetRasterDataCollectionResult & WithType(DataCollectionType value)
GetRasterDataCollectionResult & WithRequestId(RequestIdT &&value)
GetRasterDataCollectionResult & WithSupportedFilters(SupportedFiltersT &&value)
GetRasterDataCollectionResult & WithDescriptionPageUrl(DescriptionPageUrlT &&value)
AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult()=default
GetRasterDataCollectionResult & AddSupportedFilters(SupportedFiltersT &&value)
GetRasterDataCollectionResult & WithDescription(DescriptionT &&value)
GetRasterDataCollectionResult & AddTags(TagsKeyT &&key, TagsValueT &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
GetRasterDataCollectionResult & WithImageSourceBands(ImageSourceBandsT &&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