AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
SearchRasterDataCollectionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatialRequest.h>
9#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
10#include <aws/sagemaker-geospatial/model/RasterDataCollectionQueryWithBandFilterInput.h>
11
12#include <utility>
13
14namespace Aws {
15namespace SageMakerGeospatial {
16namespace Model {
17
21 public:
22 AWS_SAGEMAKERGEOSPATIAL_API SearchRasterDataCollectionRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "SearchRasterDataCollection"; }
29
30 AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override;
31
33
36 inline const Aws::String& GetArn() const { return m_arn; }
37 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
38 template <typename ArnT = Aws::String>
39 void SetArn(ArnT&& value) {
40 m_arnHasBeenSet = true;
41 m_arn = std::forward<ArnT>(value);
42 }
43 template <typename ArnT = Aws::String>
45 SetArn(std::forward<ArnT>(value));
46 return *this;
47 }
49
51
55 inline const Aws::String& GetNextToken() const { return m_nextToken; }
56 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
57 template <typename NextTokenT = Aws::String>
58 void SetNextToken(NextTokenT&& value) {
59 m_nextTokenHasBeenSet = true;
60 m_nextToken = std::forward<NextTokenT>(value);
61 }
62 template <typename NextTokenT = Aws::String>
64 SetNextToken(std::forward<NextTokenT>(value));
65 return *this;
66 }
68
70
80 inline const RasterDataCollectionQueryWithBandFilterInput& GetRasterDataCollectionQuery() const { return m_rasterDataCollectionQuery; }
81 inline bool RasterDataCollectionQueryHasBeenSet() const { return m_rasterDataCollectionQueryHasBeenSet; }
82 template <typename RasterDataCollectionQueryT = RasterDataCollectionQueryWithBandFilterInput>
83 void SetRasterDataCollectionQuery(RasterDataCollectionQueryT&& value) {
84 m_rasterDataCollectionQueryHasBeenSet = true;
85 m_rasterDataCollectionQuery = std::forward<RasterDataCollectionQueryT>(value);
86 }
87 template <typename RasterDataCollectionQueryT = RasterDataCollectionQueryWithBandFilterInput>
89 SetRasterDataCollectionQuery(std::forward<RasterDataCollectionQueryT>(value));
90 return *this;
91 }
93 private:
94 Aws::String m_arn;
95
96 Aws::String m_nextToken;
97
98 RasterDataCollectionQueryWithBandFilterInput m_rasterDataCollectionQuery;
99 bool m_arnHasBeenSet = false;
100 bool m_nextTokenHasBeenSet = false;
101 bool m_rasterDataCollectionQueryHasBeenSet = false;
102};
103
104} // namespace Model
105} // namespace SageMakerGeospatial
106} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override
AWS_SAGEMAKERGEOSPATIAL_API SearchRasterDataCollectionRequest()=default
SearchRasterDataCollectionRequest & WithNextToken(NextTokenT &&value)
const RasterDataCollectionQueryWithBandFilterInput & GetRasterDataCollectionQuery() const
SearchRasterDataCollectionRequest & WithRasterDataCollectionQuery(RasterDataCollectionQueryT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String