AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
RasterDataCollectionQueryInput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
9#include <aws/sagemaker-geospatial/model/AreaOfInterest.h>
10#include <aws/sagemaker-geospatial/model/PropertyFilters.h>
11#include <aws/sagemaker-geospatial/model/TimeRangeFilterInput.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Utils {
17namespace Json {
18class JsonValue;
19class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMakerGeospatial {
23namespace Model {
24
32 public:
33 AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput() = default;
34 AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput(Aws::Utils::Json::JsonView jsonValue);
36 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
42 inline const AreaOfInterest& GetAreaOfInterest() const { return m_areaOfInterest; }
43 inline bool AreaOfInterestHasBeenSet() const { return m_areaOfInterestHasBeenSet; }
44 template <typename AreaOfInterestT = AreaOfInterest>
45 void SetAreaOfInterest(AreaOfInterestT&& value) {
46 m_areaOfInterestHasBeenSet = true;
47 m_areaOfInterest = std::forward<AreaOfInterestT>(value);
48 }
49 template <typename AreaOfInterestT = AreaOfInterest>
51 SetAreaOfInterest(std::forward<AreaOfInterestT>(value));
52 return *this;
53 }
55
57
60 inline const PropertyFilters& GetPropertyFilters() const { return m_propertyFilters; }
61 inline bool PropertyFiltersHasBeenSet() const { return m_propertyFiltersHasBeenSet; }
62 template <typename PropertyFiltersT = PropertyFilters>
63 void SetPropertyFilters(PropertyFiltersT&& value) {
64 m_propertyFiltersHasBeenSet = true;
65 m_propertyFilters = std::forward<PropertyFiltersT>(value);
66 }
67 template <typename PropertyFiltersT = PropertyFilters>
69 SetPropertyFilters(std::forward<PropertyFiltersT>(value));
70 return *this;
71 }
73
75
78 inline const Aws::String& GetRasterDataCollectionArn() const { return m_rasterDataCollectionArn; }
79 inline bool RasterDataCollectionArnHasBeenSet() const { return m_rasterDataCollectionArnHasBeenSet; }
80 template <typename RasterDataCollectionArnT = Aws::String>
81 void SetRasterDataCollectionArn(RasterDataCollectionArnT&& value) {
82 m_rasterDataCollectionArnHasBeenSet = true;
83 m_rasterDataCollectionArn = std::forward<RasterDataCollectionArnT>(value);
84 }
85 template <typename RasterDataCollectionArnT = Aws::String>
87 SetRasterDataCollectionArn(std::forward<RasterDataCollectionArnT>(value));
88 return *this;
89 }
91
93
96 inline const TimeRangeFilterInput& GetTimeRangeFilter() const { return m_timeRangeFilter; }
97 inline bool TimeRangeFilterHasBeenSet() const { return m_timeRangeFilterHasBeenSet; }
98 template <typename TimeRangeFilterT = TimeRangeFilterInput>
99 void SetTimeRangeFilter(TimeRangeFilterT&& value) {
100 m_timeRangeFilterHasBeenSet = true;
101 m_timeRangeFilter = std::forward<TimeRangeFilterT>(value);
102 }
103 template <typename TimeRangeFilterT = TimeRangeFilterInput>
105 SetTimeRangeFilter(std::forward<TimeRangeFilterT>(value));
106 return *this;
107 }
109 private:
110 AreaOfInterest m_areaOfInterest;
111
112 PropertyFilters m_propertyFilters;
113
114 Aws::String m_rasterDataCollectionArn;
115
116 TimeRangeFilterInput m_timeRangeFilter;
117 bool m_areaOfInterestHasBeenSet = false;
118 bool m_propertyFiltersHasBeenSet = false;
119 bool m_rasterDataCollectionArnHasBeenSet = false;
120 bool m_timeRangeFilterHasBeenSet = false;
121};
122
123} // namespace Model
124} // namespace SageMakerGeospatial
125} // namespace Aws
RasterDataCollectionQueryInput & WithPropertyFilters(PropertyFiltersT &&value)
AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput()=default
AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput(Aws::Utils::Json::JsonView jsonValue)
RasterDataCollectionQueryInput & WithRasterDataCollectionArn(RasterDataCollectionArnT &&value)
RasterDataCollectionQueryInput & WithTimeRangeFilter(TimeRangeFilterT &&value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
RasterDataCollectionQueryInput & WithAreaOfInterest(AreaOfInterestT &&value)
AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue