AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeMetadataModelAssessmentsRequest.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 DescribeMetadataModelAssessmentsRequest() = 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 "DescribeMetadataModelAssessments"; }
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::String& GetMigrationProjectIdentifier() const { return m_migrationProjectIdentifier; }
40 inline bool MigrationProjectIdentifierHasBeenSet() const { return m_migrationProjectIdentifierHasBeenSet; }
41 template <typename MigrationProjectIdentifierT = Aws::String>
42 void SetMigrationProjectIdentifier(MigrationProjectIdentifierT&& value) {
43 m_migrationProjectIdentifierHasBeenSet = true;
44 m_migrationProjectIdentifier = std::forward<MigrationProjectIdentifierT>(value);
45 }
46 template <typename MigrationProjectIdentifierT = Aws::String>
48 SetMigrationProjectIdentifier(std::forward<MigrationProjectIdentifierT>(value));
49 return *this;
50 }
52
54
58 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
59 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
60 template <typename FiltersT = Aws::Vector<Filter>>
61 void SetFilters(FiltersT&& value) {
62 m_filtersHasBeenSet = true;
63 m_filters = std::forward<FiltersT>(value);
64 }
65 template <typename FiltersT = Aws::Vector<Filter>>
67 SetFilters(std::forward<FiltersT>(value));
68 return *this;
69 }
70 template <typename FiltersT = Filter>
72 m_filtersHasBeenSet = true;
73 m_filters.emplace_back(std::forward<FiltersT>(value));
74 return *this;
75 }
77
79
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 int GetMaxRecords() const { return m_maxRecords; }
111 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
112 inline void SetMaxRecords(int value) {
113 m_maxRecordsHasBeenSet = true;
114 m_maxRecords = value;
115 }
117 SetMaxRecords(value);
118 return *this;
119 }
121 private:
122 Aws::String m_migrationProjectIdentifier;
123
124 Aws::Vector<Filter> m_filters;
125
126 Aws::String m_marker;
127
128 int m_maxRecords{0};
129 bool m_migrationProjectIdentifierHasBeenSet = false;
130 bool m_filtersHasBeenSet = false;
131 bool m_markerHasBeenSet = false;
132 bool m_maxRecordsHasBeenSet = false;
133};
134
135} // namespace Model
136} // namespace DatabaseMigrationService
137} // namespace Aws
DescribeMetadataModelAssessmentsRequest & WithMigrationProjectIdentifier(MigrationProjectIdentifierT &&value)
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeMetadataModelAssessmentsRequest()=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