AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListDatasetsRequest.h
1
6#pragma once
7#include <aws/comprehend/Comprehend_EXPORTS.h>
8#include <aws/comprehend/ComprehendRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/comprehend/model/DatasetFilter.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Comprehend
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_COMPREHEND_API ListDatasetsRequest();
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 "ListDatasets"; }
32
33 AWS_COMPREHEND_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetFlywheelArn() const{ return m_flywheelArn; }
43 inline bool FlywheelArnHasBeenSet() const { return m_flywheelArnHasBeenSet; }
44 inline void SetFlywheelArn(const Aws::String& value) { m_flywheelArnHasBeenSet = true; m_flywheelArn = value; }
45 inline void SetFlywheelArn(Aws::String&& value) { m_flywheelArnHasBeenSet = true; m_flywheelArn = std::move(value); }
46 inline void SetFlywheelArn(const char* value) { m_flywheelArnHasBeenSet = true; m_flywheelArn.assign(value); }
47 inline ListDatasetsRequest& WithFlywheelArn(const Aws::String& value) { SetFlywheelArn(value); return *this;}
48 inline ListDatasetsRequest& WithFlywheelArn(Aws::String&& value) { SetFlywheelArn(std::move(value)); return *this;}
49 inline ListDatasetsRequest& WithFlywheelArn(const char* value) { SetFlywheelArn(value); return *this;}
51
53
56 inline const DatasetFilter& GetFilter() const{ return m_filter; }
57 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
58 inline void SetFilter(const DatasetFilter& value) { m_filterHasBeenSet = true; m_filter = value; }
59 inline void SetFilter(DatasetFilter&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); }
60 inline ListDatasetsRequest& WithFilter(const DatasetFilter& value) { SetFilter(value); return *this;}
61 inline ListDatasetsRequest& WithFilter(DatasetFilter&& value) { SetFilter(std::move(value)); return *this;}
63
65
68 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
69 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
70 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
71 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
72 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
73 inline ListDatasetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
74 inline ListDatasetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
75 inline ListDatasetsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
77
79
82 inline int GetMaxResults() const{ return m_maxResults; }
83 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
84 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
85 inline ListDatasetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
87 private:
88
89 Aws::String m_flywheelArn;
90 bool m_flywheelArnHasBeenSet = false;
91
92 DatasetFilter m_filter;
93 bool m_filterHasBeenSet = false;
94
95 Aws::String m_nextToken;
96 bool m_nextTokenHasBeenSet = false;
97
98 int m_maxResults;
99 bool m_maxResultsHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace Comprehend
104} // namespace Aws
ListDatasetsRequest & WithFlywheelArn(Aws::String &&value)
ListDatasetsRequest & WithFlywheelArn(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
void SetFilter(const DatasetFilter &value)
ListDatasetsRequest & WithMaxResults(int value)
ListDatasetsRequest & WithFlywheelArn(const char *value)
void SetFlywheelArn(const Aws::String &value)
ListDatasetsRequest & WithNextToken(const Aws::String &value)
AWS_COMPREHEND_API Aws::String SerializePayload() const override
ListDatasetsRequest & WithFilter(DatasetFilter &&value)
ListDatasetsRequest & WithFilter(const DatasetFilter &value)
ListDatasetsRequest & WithNextToken(Aws::String &&value)
ListDatasetsRequest & WithNextToken(const char *value)
void SetNextToken(const Aws::String &value)
AWS_COMPREHEND_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String