AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListEventsRequest.h
1
6#pragma once
7#include <aws/devops-guru/DevOpsGuru_EXPORTS.h>
8#include <aws/devops-guru/DevOpsGuruRequest.h>
9#include <aws/devops-guru/model/ListEventsFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace DevOpsGuru
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_DEVOPSGURU_API ListEventsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListEvents"; }
32
33 AWS_DEVOPSGURU_API Aws::String SerializePayload() const override;
34
35
37
41 inline const ListEventsFilters& GetFilters() const { return m_filters; }
42 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
43 template<typename FiltersT = ListEventsFilters>
44 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
45 template<typename FiltersT = ListEventsFilters>
46 ListEventsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
48
50
55 inline int GetMaxResults() const { return m_maxResults; }
56 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
57 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
58 inline ListEventsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
60
62
66 inline const Aws::String& GetNextToken() const { return m_nextToken; }
67 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
68 template<typename NextTokenT = Aws::String>
69 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
70 template<typename NextTokenT = Aws::String>
71 ListEventsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
73
75
78 inline const Aws::String& GetAccountId() const { return m_accountId; }
79 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
80 template<typename AccountIdT = Aws::String>
81 void SetAccountId(AccountIdT&& value) { m_accountIdHasBeenSet = true; m_accountId = std::forward<AccountIdT>(value); }
82 template<typename AccountIdT = Aws::String>
83 ListEventsRequest& WithAccountId(AccountIdT&& value) { SetAccountId(std::forward<AccountIdT>(value)); return *this;}
85 private:
86
87 ListEventsFilters m_filters;
88 bool m_filtersHasBeenSet = false;
89
90 int m_maxResults{0};
91 bool m_maxResultsHasBeenSet = false;
92
93 Aws::String m_nextToken;
94 bool m_nextTokenHasBeenSet = false;
95
96 Aws::String m_accountId;
97 bool m_accountIdHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace DevOpsGuru
102} // namespace Aws
AWS_DEVOPSGURU_API ListEventsRequest()=default
ListEventsRequest & WithAccountId(AccountIdT &&value)
AWS_DEVOPSGURU_API Aws::String SerializePayload() const override
ListEventsRequest & WithFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
ListEventsRequest & WithNextToken(NextTokenT &&value)
const ListEventsFilters & GetFilters() const
ListEventsRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String