AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
43 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
44 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
45 inline SearchRasterDataCollectionRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;}
46 inline SearchRasterDataCollectionRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
47 inline SearchRasterDataCollectionRequest& WithArn(const char* value) { SetArn(value); return *this;}
49
51
55 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
56 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
57 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
58 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
59 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
60 inline SearchRasterDataCollectionRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
61 inline SearchRasterDataCollectionRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
62 inline SearchRasterDataCollectionRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
64
66
76 inline const RasterDataCollectionQueryWithBandFilterInput& GetRasterDataCollectionQuery() const{ return m_rasterDataCollectionQuery; }
77 inline bool RasterDataCollectionQueryHasBeenSet() const { return m_rasterDataCollectionQueryHasBeenSet; }
78 inline void SetRasterDataCollectionQuery(const RasterDataCollectionQueryWithBandFilterInput& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = value; }
79 inline void SetRasterDataCollectionQuery(RasterDataCollectionQueryWithBandFilterInput&& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = std::move(value); }
83 private:
84
85 Aws::String m_arn;
86 bool m_arnHasBeenSet = false;
87
88 Aws::String m_nextToken;
89 bool m_nextTokenHasBeenSet = false;
90
91 RasterDataCollectionQueryWithBandFilterInput m_rasterDataCollectionQuery;
92 bool m_rasterDataCollectionQueryHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace SageMakerGeospatial
97} // namespace Aws
SearchRasterDataCollectionRequest & WithArn(const Aws::String &value)
SearchRasterDataCollectionRequest & WithNextToken(Aws::String &&value)
SearchRasterDataCollectionRequest & WithNextToken(const Aws::String &value)
void SetRasterDataCollectionQuery(const RasterDataCollectionQueryWithBandFilterInput &value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override
void SetRasterDataCollectionQuery(RasterDataCollectionQueryWithBandFilterInput &&value)
const RasterDataCollectionQueryWithBandFilterInput & GetRasterDataCollectionQuery() const
SearchRasterDataCollectionRequest & WithRasterDataCollectionQuery(const RasterDataCollectionQueryWithBandFilterInput &value)
SearchRasterDataCollectionRequest & WithRasterDataCollectionQuery(RasterDataCollectionQueryWithBandFilterInput &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String