AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SearchFoldersRequest.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/FolderSearchFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace QuickSight
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_QUICKSIGHT_API SearchFoldersRequest();
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 "SearchFolders"; }
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 SearchFoldersRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;}
47 inline SearchFoldersRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
48 inline SearchFoldersRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
50
52
58 inline const Aws::Vector<FolderSearchFilter>& GetFilters() const{ return m_filters; }
59 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
60 inline void SetFilters(const Aws::Vector<FolderSearchFilter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
61 inline void SetFilters(Aws::Vector<FolderSearchFilter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
62 inline SearchFoldersRequest& WithFilters(const Aws::Vector<FolderSearchFilter>& value) { SetFilters(value); return *this;}
63 inline SearchFoldersRequest& WithFilters(Aws::Vector<FolderSearchFilter>&& value) { SetFilters(std::move(value)); return *this;}
64 inline SearchFoldersRequest& AddFilters(const FolderSearchFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
65 inline SearchFoldersRequest& AddFilters(FolderSearchFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
67
69
73 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
74 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
76 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
77 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
78 inline SearchFoldersRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
79 inline SearchFoldersRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
80 inline SearchFoldersRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
82
84
87 inline int GetMaxResults() const{ return m_maxResults; }
88 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
89 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
90 inline SearchFoldersRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
92 private:
93
94 Aws::String m_awsAccountId;
95 bool m_awsAccountIdHasBeenSet = false;
96
98 bool m_filtersHasBeenSet = false;
99
100 Aws::String m_nextToken;
101 bool m_nextTokenHasBeenSet = false;
102
103 int m_maxResults;
104 bool m_maxResultsHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace QuickSight
109} // namespace Aws
SearchFoldersRequest & WithMaxResults(int value)
const Aws::Vector< FolderSearchFilter > & GetFilters() const
void SetFilters(const Aws::Vector< FolderSearchFilter > &value)
SearchFoldersRequest & AddFilters(const FolderSearchFilter &value)
SearchFoldersRequest & WithNextToken(Aws::String &&value)
SearchFoldersRequest & WithNextToken(const char *value)
SearchFoldersRequest & AddFilters(FolderSearchFilter &&value)
SearchFoldersRequest & WithAwsAccountId(Aws::String &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
SearchFoldersRequest & WithNextToken(const Aws::String &value)
SearchFoldersRequest & WithAwsAccountId(const Aws::String &value)
SearchFoldersRequest & WithAwsAccountId(const char *value)
SearchFoldersRequest & WithFilters(Aws::Vector< FolderSearchFilter > &&value)
void SetFilters(Aws::Vector< FolderSearchFilter > &&value)
virtual const char * GetServiceRequestName() const override
SearchFoldersRequest & WithFilters(const Aws::Vector< FolderSearchFilter > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector