AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SearchRasterDataCollectionRequest.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatialRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sagemaker-geospatial/model/RasterDataCollectionQueryWithBandFilterInput.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SageMakerGeospatial
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SAGEMAKERGEOSPATIAL_API SearchRasterDataCollectionRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "SearchRasterDataCollection"; }
32
33 AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetArn() const { return m_arn; }
41 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
42 template<typename ArnT = Aws::String>
43 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
44 template<typename ArnT = Aws::String>
45 SearchRasterDataCollectionRequest& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
47
49
53 inline const Aws::String& GetNextToken() const { return m_nextToken; }
54 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
55 template<typename NextTokenT = Aws::String>
56 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
57 template<typename NextTokenT = Aws::String>
58 SearchRasterDataCollectionRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
60
62
72 inline const RasterDataCollectionQueryWithBandFilterInput& GetRasterDataCollectionQuery() const { return m_rasterDataCollectionQuery; }
73 inline bool RasterDataCollectionQueryHasBeenSet() const { return m_rasterDataCollectionQueryHasBeenSet; }
74 template<typename RasterDataCollectionQueryT = RasterDataCollectionQueryWithBandFilterInput>
75 void SetRasterDataCollectionQuery(RasterDataCollectionQueryT&& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = std::forward<RasterDataCollectionQueryT>(value); }
76 template<typename RasterDataCollectionQueryT = RasterDataCollectionQueryWithBandFilterInput>
77 SearchRasterDataCollectionRequest& WithRasterDataCollectionQuery(RasterDataCollectionQueryT&& value) { SetRasterDataCollectionQuery(std::forward<RasterDataCollectionQueryT>(value)); return *this;}
79 private:
80
81 Aws::String m_arn;
82 bool m_arnHasBeenSet = false;
83
84 Aws::String m_nextToken;
85 bool m_nextTokenHasBeenSet = false;
86
87 RasterDataCollectionQueryWithBandFilterInput m_rasterDataCollectionQuery;
88 bool m_rasterDataCollectionQueryHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace SageMakerGeospatial
93} // 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