AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GetRasterDataCollectionResult.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/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <aws/sagemaker-geospatial/model/DataCollectionType.h>
12#include <aws/sagemaker-geospatial/model/Filter.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace SageMakerGeospatial
28{
29namespace Model
30{
32 {
33 public:
34 AWS_SAGEMAKERGEOSPATIAL_API GetRasterDataCollectionResult() = default;
37
38
40
43 inline const Aws::String& GetArn() const { return m_arn; }
44 template<typename ArnT = Aws::String>
45 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
46 template<typename ArnT = Aws::String>
47 GetRasterDataCollectionResult& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
49
51
54 inline const Aws::String& GetDescription() const { return m_description; }
55 template<typename DescriptionT = Aws::String>
56 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
57 template<typename DescriptionT = Aws::String>
58 GetRasterDataCollectionResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
60
62
65 inline const Aws::String& GetDescriptionPageUrl() const { return m_descriptionPageUrl; }
66 template<typename DescriptionPageUrlT = Aws::String>
67 void SetDescriptionPageUrl(DescriptionPageUrlT&& value) { m_descriptionPageUrlHasBeenSet = true; m_descriptionPageUrl = std::forward<DescriptionPageUrlT>(value); }
68 template<typename DescriptionPageUrlT = Aws::String>
69 GetRasterDataCollectionResult& WithDescriptionPageUrl(DescriptionPageUrlT&& value) { SetDescriptionPageUrl(std::forward<DescriptionPageUrlT>(value)); return *this;}
71
73
76 inline const Aws::Vector<Aws::String>& GetImageSourceBands() const { return m_imageSourceBands; }
77 template<typename ImageSourceBandsT = Aws::Vector<Aws::String>>
78 void SetImageSourceBands(ImageSourceBandsT&& value) { m_imageSourceBandsHasBeenSet = true; m_imageSourceBands = std::forward<ImageSourceBandsT>(value); }
79 template<typename ImageSourceBandsT = Aws::Vector<Aws::String>>
80 GetRasterDataCollectionResult& WithImageSourceBands(ImageSourceBandsT&& value) { SetImageSourceBands(std::forward<ImageSourceBandsT>(value)); return *this;}
81 template<typename ImageSourceBandsT = Aws::String>
82 GetRasterDataCollectionResult& AddImageSourceBands(ImageSourceBandsT&& value) { m_imageSourceBandsHasBeenSet = true; m_imageSourceBands.emplace_back(std::forward<ImageSourceBandsT>(value)); return *this; }
84
86
89 inline const Aws::String& GetName() const { return m_name; }
90 template<typename NameT = Aws::String>
91 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
92 template<typename NameT = Aws::String>
93 GetRasterDataCollectionResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
95
97
100 inline const Aws::Vector<Filter>& GetSupportedFilters() const { return m_supportedFilters; }
101 template<typename SupportedFiltersT = Aws::Vector<Filter>>
102 void SetSupportedFilters(SupportedFiltersT&& value) { m_supportedFiltersHasBeenSet = true; m_supportedFilters = std::forward<SupportedFiltersT>(value); }
103 template<typename SupportedFiltersT = Aws::Vector<Filter>>
104 GetRasterDataCollectionResult& WithSupportedFilters(SupportedFiltersT&& value) { SetSupportedFilters(std::forward<SupportedFiltersT>(value)); return *this;}
105 template<typename SupportedFiltersT = Filter>
106 GetRasterDataCollectionResult& AddSupportedFilters(SupportedFiltersT&& value) { m_supportedFiltersHasBeenSet = true; m_supportedFilters.emplace_back(std::forward<SupportedFiltersT>(value)); return *this; }
108
110
113 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
114 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
115 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
116 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
117 GetRasterDataCollectionResult& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
118 template<typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
119 GetRasterDataCollectionResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
120 m_tagsHasBeenSet = true; m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value)); return *this;
121 }
123
125
128 inline DataCollectionType GetType() const { return m_type; }
129 inline void SetType(DataCollectionType value) { m_typeHasBeenSet = true; m_type = value; }
130 inline GetRasterDataCollectionResult& WithType(DataCollectionType value) { SetType(value); return *this;}
132
134
135 inline const Aws::String& GetRequestId() const { return m_requestId; }
136 template<typename RequestIdT = Aws::String>
137 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
138 template<typename RequestIdT = Aws::String>
139 GetRasterDataCollectionResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
141 private:
142
143 Aws::String m_arn;
144 bool m_arnHasBeenSet = false;
145
146 Aws::String m_description;
147 bool m_descriptionHasBeenSet = false;
148
149 Aws::String m_descriptionPageUrl;
150 bool m_descriptionPageUrlHasBeenSet = false;
151
152 Aws::Vector<Aws::String> m_imageSourceBands;
153 bool m_imageSourceBandsHasBeenSet = false;
154
155 Aws::String m_name;
156 bool m_nameHasBeenSet = false;
157
158 Aws::Vector<Filter> m_supportedFilters;
159 bool m_supportedFiltersHasBeenSet = false;
160
162 bool m_tagsHasBeenSet = false;
163
165 bool m_typeHasBeenSet = false;
166
167 Aws::String m_requestId;
168 bool m_requestIdHasBeenSet = false;
169 };
170
171} // namespace Model
172} // namespace SageMakerGeospatial
173} // 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