AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
RasterDataCollectionQueryInput.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/model/AreaOfInterest.h>
9#include <aws/sagemaker-geospatial/model/PropertyFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/sagemaker-geospatial/model/TimeRangeFilterInput.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace SageMakerGeospatial
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput() = default;
39 AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput(Aws::Utils::Json::JsonView jsonValue);
41 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const AreaOfInterest& GetAreaOfInterest() const { return m_areaOfInterest; }
49 inline bool AreaOfInterestHasBeenSet() const { return m_areaOfInterestHasBeenSet; }
50 template<typename AreaOfInterestT = AreaOfInterest>
51 void SetAreaOfInterest(AreaOfInterestT&& value) { m_areaOfInterestHasBeenSet = true; m_areaOfInterest = std::forward<AreaOfInterestT>(value); }
52 template<typename AreaOfInterestT = AreaOfInterest>
53 RasterDataCollectionQueryInput& WithAreaOfInterest(AreaOfInterestT&& value) { SetAreaOfInterest(std::forward<AreaOfInterestT>(value)); return *this;}
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) { m_propertyFiltersHasBeenSet = true; m_propertyFilters = std::forward<PropertyFiltersT>(value); }
64 template<typename PropertyFiltersT = PropertyFilters>
65 RasterDataCollectionQueryInput& WithPropertyFilters(PropertyFiltersT&& value) { SetPropertyFilters(std::forward<PropertyFiltersT>(value)); return *this;}
67
69
72 inline const Aws::String& GetRasterDataCollectionArn() const { return m_rasterDataCollectionArn; }
73 inline bool RasterDataCollectionArnHasBeenSet() const { return m_rasterDataCollectionArnHasBeenSet; }
74 template<typename RasterDataCollectionArnT = Aws::String>
75 void SetRasterDataCollectionArn(RasterDataCollectionArnT&& value) { m_rasterDataCollectionArnHasBeenSet = true; m_rasterDataCollectionArn = std::forward<RasterDataCollectionArnT>(value); }
76 template<typename RasterDataCollectionArnT = Aws::String>
77 RasterDataCollectionQueryInput& WithRasterDataCollectionArn(RasterDataCollectionArnT&& value) { SetRasterDataCollectionArn(std::forward<RasterDataCollectionArnT>(value)); return *this;}
79
81
84 inline const TimeRangeFilterInput& GetTimeRangeFilter() const { return m_timeRangeFilter; }
85 inline bool TimeRangeFilterHasBeenSet() const { return m_timeRangeFilterHasBeenSet; }
86 template<typename TimeRangeFilterT = TimeRangeFilterInput>
87 void SetTimeRangeFilter(TimeRangeFilterT&& value) { m_timeRangeFilterHasBeenSet = true; m_timeRangeFilter = std::forward<TimeRangeFilterT>(value); }
88 template<typename TimeRangeFilterT = TimeRangeFilterInput>
89 RasterDataCollectionQueryInput& WithTimeRangeFilter(TimeRangeFilterT&& value) { SetTimeRangeFilter(std::forward<TimeRangeFilterT>(value)); return *this;}
91 private:
92
93 AreaOfInterest m_areaOfInterest;
94 bool m_areaOfInterestHasBeenSet = false;
95
96 PropertyFilters m_propertyFilters;
97 bool m_propertyFiltersHasBeenSet = false;
98
99 Aws::String m_rasterDataCollectionArn;
100 bool m_rasterDataCollectionArnHasBeenSet = false;
101
102 TimeRangeFilterInput m_timeRangeFilter;
103 bool m_timeRangeFilterHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace SageMakerGeospatial
108} // 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