AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListOperationEventsRequest.h
1
6#pragma once
7#include <aws/ssm-sap/SsmSap_EXPORTS.h>
8#include <aws/ssm-sap/SsmSapRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/ssm-sap/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace SsmSap
17{
18namespace Model
19{
20
24 {
25 public:
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 "ListOperationEvents"; }
33
34 AWS_SSMSAP_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetOperationId() const{ return m_operationId; }
42 inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; }
43 inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; }
44 inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); }
45 inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); }
46 inline ListOperationEventsRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
47 inline ListOperationEventsRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
48 inline ListOperationEventsRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;}
50
52
58 inline int GetMaxResults() const{ return m_maxResults; }
59 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
60 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
61 inline ListOperationEventsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
63
65
69 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
70 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
71 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
72 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
73 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
74 inline ListOperationEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
75 inline ListOperationEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
76 inline ListOperationEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
78
80
86 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
87 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
88 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
89 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
90 inline ListOperationEventsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
91 inline ListOperationEventsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
92 inline ListOperationEventsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
93 inline ListOperationEventsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
95 private:
96
97 Aws::String m_operationId;
98 bool m_operationIdHasBeenSet = false;
99
100 int m_maxResults;
101 bool m_maxResultsHasBeenSet = false;
102
103 Aws::String m_nextToken;
104 bool m_nextTokenHasBeenSet = false;
105
106 Aws::Vector<Filter> m_filters;
107 bool m_filtersHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace SsmSap
112} // namespace Aws
ListOperationEventsRequest & WithNextToken(Aws::String &&value)
ListOperationEventsRequest & WithFilters(const Aws::Vector< Filter > &value)
ListOperationEventsRequest & WithNextToken(const Aws::String &value)
ListOperationEventsRequest & AddFilters(Filter &&value)
ListOperationEventsRequest & WithMaxResults(int value)
ListOperationEventsRequest & WithOperationId(const char *value)
ListOperationEventsRequest & WithNextToken(const char *value)
ListOperationEventsRequest & WithFilters(Aws::Vector< Filter > &&value)
AWS_SSMSAP_API Aws::String SerializePayload() const override
ListOperationEventsRequest & AddFilters(const Filter &value)
ListOperationEventsRequest & WithOperationId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
ListOperationEventsRequest & WithOperationId(const Aws::String &value)
void SetFilters(const Aws::Vector< Filter > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector