AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeDataMigrationsRequest.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
22 public:
23 AWS_DATABASEMIGRATIONSERVICE_API DescribeDataMigrationsRequest() = default;
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "DescribeDataMigrations"; }
30
31 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
32
33 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
34
36
39 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
40 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
41 template <typename FiltersT = Aws::Vector<Filter>>
42 void SetFilters(FiltersT&& value) {
43 m_filtersHasBeenSet = true;
44 m_filters = std::forward<FiltersT>(value);
45 }
46 template <typename FiltersT = Aws::Vector<Filter>>
48 SetFilters(std::forward<FiltersT>(value));
49 return *this;
50 }
51 template <typename FiltersT = Filter>
53 m_filtersHasBeenSet = true;
54 m_filters.emplace_back(std::forward<FiltersT>(value));
55 return *this;
56 }
58
60
66 inline int GetMaxRecords() const { return m_maxRecords; }
67 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
68 inline void SetMaxRecords(int value) {
69 m_maxRecordsHasBeenSet = true;
70 m_maxRecords = value;
71 }
73 SetMaxRecords(value);
74 return *this;
75 }
77
79
84 inline const Aws::String& GetMarker() const { return m_marker; }
85 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
86 template <typename MarkerT = Aws::String>
87 void SetMarker(MarkerT&& value) {
88 m_markerHasBeenSet = true;
89 m_marker = std::forward<MarkerT>(value);
90 }
91 template <typename MarkerT = Aws::String>
93 SetMarker(std::forward<MarkerT>(value));
94 return *this;
95 }
97
99
105 inline bool GetWithoutSettings() const { return m_withoutSettings; }
106 inline bool WithoutSettingsHasBeenSet() const { return m_withoutSettingsHasBeenSet; }
107 inline void SetWithoutSettings(bool value) {
108 m_withoutSettingsHasBeenSet = true;
109 m_withoutSettings = value;
110 }
112 SetWithoutSettings(value);
113 return *this;
114 }
116
118
124 inline bool GetWithoutStatistics() const { return m_withoutStatistics; }
125 inline bool WithoutStatisticsHasBeenSet() const { return m_withoutStatisticsHasBeenSet; }
126 inline void SetWithoutStatistics(bool value) {
127 m_withoutStatisticsHasBeenSet = true;
128 m_withoutStatistics = value;
129 }
132 return *this;
133 }
135 private:
136 Aws::Vector<Filter> m_filters;
137
138 int m_maxRecords{0};
139
140 Aws::String m_marker;
141
142 bool m_withoutSettings{false};
143
144 bool m_withoutStatistics{false};
145 bool m_filtersHasBeenSet = false;
146 bool m_maxRecordsHasBeenSet = false;
147 bool m_markerHasBeenSet = false;
148 bool m_withoutSettingsHasBeenSet = false;
149 bool m_withoutStatisticsHasBeenSet = false;
150};
151
152} // namespace Model
153} // namespace DatabaseMigrationService
154} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeDataMigrationsRequest()=default
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