AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetAreaOfInterest(const AreaOfInterest& value) { m_areaOfInterestHasBeenSet = true; m_areaOfInterest = value; }
51 inline void SetAreaOfInterest(AreaOfInterest&& value) { m_areaOfInterestHasBeenSet = true; m_areaOfInterest = std::move(value); }
53 inline RasterDataCollectionQueryInput& WithAreaOfInterest(AreaOfInterest&& value) { SetAreaOfInterest(std::move(value)); return *this;}
55
57
60 inline const PropertyFilters& GetPropertyFilters() const{ return m_propertyFilters; }
61 inline bool PropertyFiltersHasBeenSet() const { return m_propertyFiltersHasBeenSet; }
62 inline void SetPropertyFilters(const PropertyFilters& value) { m_propertyFiltersHasBeenSet = true; m_propertyFilters = value; }
63 inline void SetPropertyFilters(PropertyFilters&& value) { m_propertyFiltersHasBeenSet = true; m_propertyFilters = std::move(value); }
65 inline RasterDataCollectionQueryInput& WithPropertyFilters(PropertyFilters&& value) { SetPropertyFilters(std::move(value)); return *this;}
67
69
72 inline const Aws::String& GetRasterDataCollectionArn() const{ return m_rasterDataCollectionArn; }
73 inline bool RasterDataCollectionArnHasBeenSet() const { return m_rasterDataCollectionArnHasBeenSet; }
74 inline void SetRasterDataCollectionArn(const Aws::String& value) { m_rasterDataCollectionArnHasBeenSet = true; m_rasterDataCollectionArn = value; }
75 inline void SetRasterDataCollectionArn(Aws::String&& value) { m_rasterDataCollectionArnHasBeenSet = true; m_rasterDataCollectionArn = std::move(value); }
76 inline void SetRasterDataCollectionArn(const char* value) { m_rasterDataCollectionArnHasBeenSet = true; m_rasterDataCollectionArn.assign(value); }
81
83
86 inline const TimeRangeFilterInput& GetTimeRangeFilter() const{ return m_timeRangeFilter; }
87 inline bool TimeRangeFilterHasBeenSet() const { return m_timeRangeFilterHasBeenSet; }
88 inline void SetTimeRangeFilter(const TimeRangeFilterInput& value) { m_timeRangeFilterHasBeenSet = true; m_timeRangeFilter = value; }
89 inline void SetTimeRangeFilter(TimeRangeFilterInput&& value) { m_timeRangeFilterHasBeenSet = true; m_timeRangeFilter = std::move(value); }
93 private:
94
95 AreaOfInterest m_areaOfInterest;
96 bool m_areaOfInterestHasBeenSet = false;
97
98 PropertyFilters m_propertyFilters;
99 bool m_propertyFiltersHasBeenSet = false;
100
101 Aws::String m_rasterDataCollectionArn;
102 bool m_rasterDataCollectionArnHasBeenSet = false;
103
104 TimeRangeFilterInput m_timeRangeFilter;
105 bool m_timeRangeFilterHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace SageMakerGeospatial
110} // namespace Aws
RasterDataCollectionQueryInput & WithRasterDataCollectionArn(const char *value)
RasterDataCollectionQueryInput & WithTimeRangeFilter(const TimeRangeFilterInput &value)
AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput(Aws::Utils::Json::JsonView jsonValue)
RasterDataCollectionQueryInput & WithAreaOfInterest(const AreaOfInterest &value)
RasterDataCollectionQueryInput & WithPropertyFilters(const PropertyFilters &value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
RasterDataCollectionQueryInput & WithAreaOfInterest(AreaOfInterest &&value)
RasterDataCollectionQueryInput & WithRasterDataCollectionArn(const Aws::String &value)
RasterDataCollectionQueryInput & WithPropertyFilters(PropertyFilters &&value)
AWS_SAGEMAKERGEOSPATIAL_API RasterDataCollectionQueryInput & operator=(Aws::Utils::Json::JsonView jsonValue)
RasterDataCollectionQueryInput & WithTimeRangeFilter(TimeRangeFilterInput &&value)
RasterDataCollectionQueryInput & WithRasterDataCollectionArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue