AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListGroupResourcesRequest.h
1
6#pragma once
7#include <aws/resource-groups/ResourceGroups_EXPORTS.h>
8#include <aws/resource-groups/ResourceGroupsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/resource-groups/model/ResourceFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ResourceGroups
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_RESOURCEGROUPS_API ListGroupResourcesRequest();
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 "ListGroupResources"; }
33
34 AWS_RESOURCEGROUPS_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetGroup() const{ return m_group; }
42 inline bool GroupHasBeenSet() const { return m_groupHasBeenSet; }
43 inline void SetGroup(const Aws::String& value) { m_groupHasBeenSet = true; m_group = value; }
44 inline void SetGroup(Aws::String&& value) { m_groupHasBeenSet = true; m_group = std::move(value); }
45 inline void SetGroup(const char* value) { m_groupHasBeenSet = true; m_group.assign(value); }
46 inline ListGroupResourcesRequest& WithGroup(const Aws::String& value) { SetGroup(value); return *this;}
47 inline ListGroupResourcesRequest& WithGroup(Aws::String&& value) { SetGroup(std::move(value)); return *this;}
48 inline ListGroupResourcesRequest& WithGroup(const char* value) { SetGroup(value); return *this;}
50
52
75 inline const Aws::Vector<ResourceFilter>& GetFilters() const{ return m_filters; }
76 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
77 inline void SetFilters(const Aws::Vector<ResourceFilter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
78 inline void SetFilters(Aws::Vector<ResourceFilter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
79 inline ListGroupResourcesRequest& WithFilters(const Aws::Vector<ResourceFilter>& value) { SetFilters(value); return *this;}
80 inline ListGroupResourcesRequest& WithFilters(Aws::Vector<ResourceFilter>&& value) { SetFilters(std::move(value)); return *this;}
81 inline ListGroupResourcesRequest& AddFilters(const ResourceFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
82 inline ListGroupResourcesRequest& AddFilters(ResourceFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
84
86
97 inline int GetMaxResults() const{ return m_maxResults; }
98 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
99 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
100 inline ListGroupResourcesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
102
104
111 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
112 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
113 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
114 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
115 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
116 inline ListGroupResourcesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
117 inline ListGroupResourcesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
118 inline ListGroupResourcesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
120 private:
121
122 Aws::String m_group;
123 bool m_groupHasBeenSet = false;
124
126 bool m_filtersHasBeenSet = false;
127
128 int m_maxResults;
129 bool m_maxResultsHasBeenSet = false;
130
131 Aws::String m_nextToken;
132 bool m_nextTokenHasBeenSet = false;
133 };
134
135} // namespace Model
136} // namespace ResourceGroups
137} // namespace Aws
void SetFilters(Aws::Vector< ResourceFilter > &&value)
ListGroupResourcesRequest & WithGroup(const char *value)
void SetFilters(const Aws::Vector< ResourceFilter > &value)
ListGroupResourcesRequest & WithGroup(const Aws::String &value)
ListGroupResourcesRequest & AddFilters(ResourceFilter &&value)
AWS_RESOURCEGROUPS_API Aws::String SerializePayload() const override
const Aws::Vector< ResourceFilter > & GetFilters() const
ListGroupResourcesRequest & WithGroup(Aws::String &&value)
ListGroupResourcesRequest & AddFilters(const ResourceFilter &value)
ListGroupResourcesRequest & WithNextToken(const char *value)
ListGroupResourcesRequest & WithFilters(Aws::Vector< ResourceFilter > &&value)
ListGroupResourcesRequest & WithNextToken(Aws::String &&value)
ListGroupResourcesRequest & WithNextToken(const Aws::String &value)
ListGroupResourcesRequest & WithFilters(const Aws::Vector< ResourceFilter > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector