AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListNotificationRulesRequest.h
1
6#pragma once
7#include <aws/codestar-notifications/CodeStarNotifications_EXPORTS.h>
8#include <aws/codestar-notifications/CodeStarNotificationsRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/codestar-notifications/model/ListNotificationRulesFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CodeStarNotifications
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CODESTARNOTIFICATIONS_API ListNotificationRulesRequest() = default;
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 "ListNotificationRules"; }
33
34 AWS_CODESTARNOTIFICATIONS_API Aws::String SerializePayload() const override;
35
36
38
44 inline const Aws::Vector<ListNotificationRulesFilter>& GetFilters() const { return m_filters; }
45 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
46 template<typename FiltersT = Aws::Vector<ListNotificationRulesFilter>>
47 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
48 template<typename FiltersT = Aws::Vector<ListNotificationRulesFilter>>
49 ListNotificationRulesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
50 template<typename FiltersT = ListNotificationRulesFilter>
51 ListNotificationRulesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
53
55
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
61 template<typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
63 template<typename NextTokenT = Aws::String>
64 ListNotificationRulesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
66
68
72 inline int GetMaxResults() const { return m_maxResults; }
73 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
74 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
75 inline ListNotificationRulesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
77 private:
78
80 bool m_filtersHasBeenSet = false;
81
82 Aws::String m_nextToken;
83 bool m_nextTokenHasBeenSet = false;
84
85 int m_maxResults{0};
86 bool m_maxResultsHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace CodeStarNotifications
91} // namespace Aws
ListNotificationRulesRequest & WithNextToken(NextTokenT &&value)
AWS_CODESTARNOTIFICATIONS_API ListNotificationRulesRequest()=default
AWS_CODESTARNOTIFICATIONS_API Aws::String SerializePayload() const override
const Aws::Vector< ListNotificationRulesFilter > & GetFilters() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector