AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeTableStatisticsRequest.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 DescribeTableStatisticsRequest() = 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 "DescribeTableStatistics"; }
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::String& GetReplicationTaskArn() const { return m_replicationTaskArn; }
43 inline bool ReplicationTaskArnHasBeenSet() const { return m_replicationTaskArnHasBeenSet; }
44 template <typename ReplicationTaskArnT = Aws::String>
45 void SetReplicationTaskArn(ReplicationTaskArnT&& value) {
46 m_replicationTaskArnHasBeenSet = true;
47 m_replicationTaskArn = std::forward<ReplicationTaskArnT>(value);
48 }
49 template <typename ReplicationTaskArnT = Aws::String>
51 SetReplicationTaskArn(std::forward<ReplicationTaskArnT>(value));
52 return *this;
53 }
55
57
63 inline int GetMaxRecords() const { return m_maxRecords; }
64 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
65 inline void SetMaxRecords(int value) {
66 m_maxRecordsHasBeenSet = true;
67 m_maxRecords = value;
68 }
70 SetMaxRecords(value);
71 return *this;
72 }
74
76
81 inline const Aws::String& GetMarker() const { return m_marker; }
82 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
83 template <typename MarkerT = Aws::String>
84 void SetMarker(MarkerT&& value) {
85 m_markerHasBeenSet = true;
86 m_marker = std::forward<MarkerT>(value);
87 }
88 template <typename MarkerT = Aws::String>
90 SetMarker(std::forward<MarkerT>(value));
91 return *this;
92 }
94
96
101 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
102 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
103 template <typename FiltersT = Aws::Vector<Filter>>
104 void SetFilters(FiltersT&& value) {
105 m_filtersHasBeenSet = true;
106 m_filters = std::forward<FiltersT>(value);
107 }
108 template <typename FiltersT = Aws::Vector<Filter>>
110 SetFilters(std::forward<FiltersT>(value));
111 return *this;
112 }
113 template <typename FiltersT = Filter>
115 m_filtersHasBeenSet = true;
116 m_filters.emplace_back(std::forward<FiltersT>(value));
117 return *this;
118 }
120 private:
121 Aws::String m_replicationTaskArn;
122
123 int m_maxRecords{0};
124
125 Aws::String m_marker;
126
127 Aws::Vector<Filter> m_filters;
128 bool m_replicationTaskArnHasBeenSet = false;
129 bool m_maxRecordsHasBeenSet = false;
130 bool m_markerHasBeenSet = false;
131 bool m_filtersHasBeenSet = false;
132};
133
134} // namespace Model
135} // namespace DatabaseMigrationService
136} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API DescribeTableStatisticsRequest()=default
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
DescribeTableStatisticsRequest & WithReplicationTaskArn(ReplicationTaskArnT &&value)
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