AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeGroupsRequest.h
1
6#pragma once
7#include <aws/workdocs/WorkDocs_EXPORTS.h>
8#include <aws/workdocs/WorkDocsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace WorkDocs
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_WORKDOCS_API DescribeGroupsRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeGroups"; }
35
36 AWS_WORKDOCS_API Aws::String SerializePayload() const override;
37
38 AWS_WORKDOCS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
41
42
44
48 inline const Aws::String& GetAuthenticationToken() const{ return m_authenticationToken; }
49 inline bool AuthenticationTokenHasBeenSet() const { return m_authenticationTokenHasBeenSet; }
50 inline void SetAuthenticationToken(const Aws::String& value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken = value; }
51 inline void SetAuthenticationToken(Aws::String&& value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken = std::move(value); }
52 inline void SetAuthenticationToken(const char* value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken.assign(value); }
54 inline DescribeGroupsRequest& WithAuthenticationToken(Aws::String&& value) { SetAuthenticationToken(std::move(value)); return *this;}
55 inline DescribeGroupsRequest& WithAuthenticationToken(const char* value) { SetAuthenticationToken(value); return *this;}
57
59
62 inline const Aws::String& GetSearchQuery() const{ return m_searchQuery; }
63 inline bool SearchQueryHasBeenSet() const { return m_searchQueryHasBeenSet; }
64 inline void SetSearchQuery(const Aws::String& value) { m_searchQueryHasBeenSet = true; m_searchQuery = value; }
65 inline void SetSearchQuery(Aws::String&& value) { m_searchQueryHasBeenSet = true; m_searchQuery = std::move(value); }
66 inline void SetSearchQuery(const char* value) { m_searchQueryHasBeenSet = true; m_searchQuery.assign(value); }
67 inline DescribeGroupsRequest& WithSearchQuery(const Aws::String& value) { SetSearchQuery(value); return *this;}
68 inline DescribeGroupsRequest& WithSearchQuery(Aws::String&& value) { SetSearchQuery(std::move(value)); return *this;}
69 inline DescribeGroupsRequest& WithSearchQuery(const char* value) { SetSearchQuery(value); return *this;}
71
73
76 inline const Aws::String& GetOrganizationId() const{ return m_organizationId; }
77 inline bool OrganizationIdHasBeenSet() const { return m_organizationIdHasBeenSet; }
78 inline void SetOrganizationId(const Aws::String& value) { m_organizationIdHasBeenSet = true; m_organizationId = value; }
79 inline void SetOrganizationId(Aws::String&& value) { m_organizationIdHasBeenSet = true; m_organizationId = std::move(value); }
80 inline void SetOrganizationId(const char* value) { m_organizationIdHasBeenSet = true; m_organizationId.assign(value); }
81 inline DescribeGroupsRequest& WithOrganizationId(const Aws::String& value) { SetOrganizationId(value); return *this;}
82 inline DescribeGroupsRequest& WithOrganizationId(Aws::String&& value) { SetOrganizationId(std::move(value)); return *this;}
83 inline DescribeGroupsRequest& WithOrganizationId(const char* value) { SetOrganizationId(value); return *this;}
85
87
91 inline const Aws::String& GetMarker() const{ return m_marker; }
92 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
93 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
94 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
95 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
96 inline DescribeGroupsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
97 inline DescribeGroupsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
98 inline DescribeGroupsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
100
102
105 inline int GetLimit() const{ return m_limit; }
106 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
107 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
108 inline DescribeGroupsRequest& WithLimit(int value) { SetLimit(value); return *this;}
110 private:
111
112 Aws::String m_authenticationToken;
113 bool m_authenticationTokenHasBeenSet = false;
114
115 Aws::String m_searchQuery;
116 bool m_searchQueryHasBeenSet = false;
117
118 Aws::String m_organizationId;
119 bool m_organizationIdHasBeenSet = false;
120
121 Aws::String m_marker;
122 bool m_markerHasBeenSet = false;
123
124 int m_limit;
125 bool m_limitHasBeenSet = false;
126 };
127
128} // namespace Model
129} // namespace WorkDocs
130} // namespace Aws
DescribeGroupsRequest & WithAuthenticationToken(Aws::String &&value)
AWS_WORKDOCS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeGroupsRequest & WithLimit(int value)
DescribeGroupsRequest & WithOrganizationId(Aws::String &&value)
DescribeGroupsRequest & WithSearchQuery(Aws::String &&value)
DescribeGroupsRequest & WithAuthenticationToken(const Aws::String &value)
DescribeGroupsRequest & WithMarker(const Aws::String &value)
void SetOrganizationId(const Aws::String &value)
DescribeGroupsRequest & WithOrganizationId(const char *value)
AWS_WORKDOCS_API Aws::String SerializePayload() const override
AWS_WORKDOCS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeGroupsRequest & WithSearchQuery(const char *value)
DescribeGroupsRequest & WithAuthenticationToken(const char *value)
DescribeGroupsRequest & WithSearchQuery(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DescribeGroupsRequest & WithOrganizationId(const Aws::String &value)
void SetAuthenticationToken(const Aws::String &value)
DescribeGroupsRequest & WithMarker(Aws::String &&value)
DescribeGroupsRequest & WithMarker(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String