AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SearchDataSetsRequest.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/quicksight/model/DataSetSearchFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace QuickSight
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_QUICKSIGHT_API SearchDataSetsRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "SearchDataSets"; }
33
34 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; }
42 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
43 inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; }
44 inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); }
45 inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); }
46 inline SearchDataSetsRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;}
47 inline SearchDataSetsRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
48 inline SearchDataSetsRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
50
52
55 inline const Aws::Vector<DataSetSearchFilter>& GetFilters() const{ return m_filters; }
56 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
57 inline void SetFilters(const Aws::Vector<DataSetSearchFilter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
58 inline void SetFilters(Aws::Vector<DataSetSearchFilter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
60 inline SearchDataSetsRequest& WithFilters(Aws::Vector<DataSetSearchFilter>&& value) { SetFilters(std::move(value)); return *this;}
61 inline SearchDataSetsRequest& AddFilters(const DataSetSearchFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
62 inline SearchDataSetsRequest& AddFilters(DataSetSearchFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
64
66
69 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
70 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
71 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
72 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
73 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
74 inline SearchDataSetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
75 inline SearchDataSetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
76 inline SearchDataSetsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
78
80
83 inline int GetMaxResults() const{ return m_maxResults; }
84 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
85 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
86 inline SearchDataSetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
88 private:
89
90 Aws::String m_awsAccountId;
91 bool m_awsAccountIdHasBeenSet = false;
92
94 bool m_filtersHasBeenSet = false;
95
96 Aws::String m_nextToken;
97 bool m_nextTokenHasBeenSet = false;
98
99 int m_maxResults;
100 bool m_maxResultsHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace QuickSight
105} // namespace Aws
SearchDataSetsRequest & AddFilters(DataSetSearchFilter &&value)
SearchDataSetsRequest & WithAwsAccountId(Aws::String &&value)
SearchDataSetsRequest & WithMaxResults(int value)
SearchDataSetsRequest & WithNextToken(Aws::String &&value)
SearchDataSetsRequest & WithNextToken(const char *value)
SearchDataSetsRequest & WithAwsAccountId(const char *value)
SearchDataSetsRequest & WithFilters(Aws::Vector< DataSetSearchFilter > &&value)
SearchDataSetsRequest & WithNextToken(const Aws::String &value)
const Aws::Vector< DataSetSearchFilter > & GetFilters() const
virtual const char * GetServiceRequestName() const override
SearchDataSetsRequest & WithFilters(const Aws::Vector< DataSetSearchFilter > &value)
void SetFilters(const Aws::Vector< DataSetSearchFilter > &value)
void SetFilters(Aws::Vector< DataSetSearchFilter > &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
SearchDataSetsRequest & AddFilters(const DataSetSearchFilter &value)
SearchDataSetsRequest & WithAwsAccountId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector