AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeReplicationTasksRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/dms/DatabaseMigrationServiceRequest.h>
10#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
11#include <aws/dms/model/Filter.h>
12
13#include <utility>
14
15namespace Aws {
16namespace DatabaseMigrationService {
17namespace Model {
18
25 public:
26 AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTasksRequest() = 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 "DescribeReplicationTasks"; }
33
34 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
35
36 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
39
44 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
45 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
46 template <typename FiltersT = Aws::Vector<Filter>>
47 void SetFilters(FiltersT&& value) {
48 m_filtersHasBeenSet = true;
49 m_filters = std::forward<FiltersT>(value);
50 }
51 template <typename FiltersT = Aws::Vector<Filter>>
53 SetFilters(std::forward<FiltersT>(value));
54 return *this;
55 }
56 template <typename FiltersT = Filter>
58 m_filtersHasBeenSet = true;
59 m_filters.emplace_back(std::forward<FiltersT>(value));
60 return *this;
61 }
63
65
71 inline int GetMaxRecords() const { return m_maxRecords; }
72 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
73 inline void SetMaxRecords(int value) {
74 m_maxRecordsHasBeenSet = true;
75 m_maxRecords = value;
76 }
78 SetMaxRecords(value);
79 return *this;
80 }
82
84
89 inline const Aws::String& GetMarker() const { return m_marker; }
90 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
91 template <typename MarkerT = Aws::String>
92 void SetMarker(MarkerT&& value) {
93 m_markerHasBeenSet = true;
94 m_marker = std::forward<MarkerT>(value);
95 }
96 template <typename MarkerT = Aws::String>
98 SetMarker(std::forward<MarkerT>(value));
99 return *this;
100 }
102
104
110 inline bool GetWithoutSettings() const { return m_withoutSettings; }
111 inline bool WithoutSettingsHasBeenSet() const { return m_withoutSettingsHasBeenSet; }
112 inline void SetWithoutSettings(bool value) {
113 m_withoutSettingsHasBeenSet = true;
114 m_withoutSettings = value;
115 }
117 SetWithoutSettings(value);
118 return *this;
119 }
121 private:
122 Aws::Vector<Filter> m_filters;
123
124 int m_maxRecords{0};
125
126 Aws::String m_marker;
127
128 bool m_withoutSettings{false};
129 bool m_filtersHasBeenSet = false;
130 bool m_maxRecordsHasBeenSet = false;
131 bool m_markerHasBeenSet = false;
132 bool m_withoutSettingsHasBeenSet = false;
133};
134
135} // namespace Model
136} // namespace DatabaseMigrationService
137} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTasksRequest()=default
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector