AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeReplicationConfigsRequest.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 DescribeReplicationConfigsRequest() = 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 "DescribeReplicationConfigs"; }
33
34 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
35
36 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
39
42 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
43 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
44 template <typename FiltersT = Aws::Vector<Filter>>
45 void SetFilters(FiltersT&& value) {
46 m_filtersHasBeenSet = true;
47 m_filters = std::forward<FiltersT>(value);
48 }
49 template <typename FiltersT = Aws::Vector<Filter>>
51 SetFilters(std::forward<FiltersT>(value));
52 return *this;
53 }
54 template <typename FiltersT = Filter>
56 m_filtersHasBeenSet = true;
57 m_filters.emplace_back(std::forward<FiltersT>(value));
58 return *this;
59 }
61
63
69 inline int GetMaxRecords() const { return m_maxRecords; }
70 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
71 inline void SetMaxRecords(int value) {
72 m_maxRecordsHasBeenSet = true;
73 m_maxRecords = value;
74 }
76 SetMaxRecords(value);
77 return *this;
78 }
80
82
87 inline const Aws::String& GetMarker() const { return m_marker; }
88 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
89 template <typename MarkerT = Aws::String>
90 void SetMarker(MarkerT&& value) {
91 m_markerHasBeenSet = true;
92 m_marker = std::forward<MarkerT>(value);
93 }
94 template <typename MarkerT = Aws::String>
96 SetMarker(std::forward<MarkerT>(value));
97 return *this;
98 }
100 private:
101 Aws::Vector<Filter> m_filters;
102
103 int m_maxRecords{0};
104
105 Aws::String m_marker;
106 bool m_filtersHasBeenSet = false;
107 bool m_maxRecordsHasBeenSet = false;
108 bool m_markerHasBeenSet = false;
109};
110
111} // namespace Model
112} // namespace DatabaseMigrationService
113} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsRequest()=default
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() 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