AWS SDK for C++

AWS SDK for C++ Version 1.11.874

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
61 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
62 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
63 template <typename FiltersT = Aws::Vector<Filter>>
64 void SetFilters(FiltersT&& value) {
65 m_filtersHasBeenSet = true;
66 m_filters = std::forward<FiltersT>(value);
67 }
68 template <typename FiltersT = Aws::Vector<Filter>>
70 SetFilters(std::forward<FiltersT>(value));
71 return *this;
72 }
73 template <typename FiltersT = Filter>
75 m_filtersHasBeenSet = true;
76 m_filters.emplace_back(std::forward<FiltersT>(value));
77 return *this;
78 }
80
82
92 inline const Aws::String& GetMarker() const { return m_marker; }
93 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
94 template <typename MarkerT = Aws::String>
95 void SetMarker(MarkerT&& value) {
96 m_markerHasBeenSet = true;
97 m_marker = std::forward<MarkerT>(value);
98 }
99 template <typename MarkerT = Aws::String>
101 SetMarker(std::forward<MarkerT>(value));
102 return *this;
103 }
105
107
113 inline int GetMaxRecords() const { return m_maxRecords; }
114 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
115 inline void SetMaxRecords(int value) {
116 m_maxRecordsHasBeenSet = true;
117 m_maxRecords = value;
118 }
120 SetMaxRecords(value);
121 return *this;
122 }
124 private:
125 Aws::String m_migrationProjectIdentifier;
126
127 Aws::Vector<Filter> m_filters;
128
129 Aws::String m_marker;
130
131 int m_maxRecords{0};
132 bool m_migrationProjectIdentifierHasBeenSet = false;
133 bool m_filtersHasBeenSet = false;
134 bool m_markerHasBeenSet = false;
135 bool m_maxRecordsHasBeenSet = false;
136};
137
138} // namespace Model
139} // namespace DatabaseMigrationService
140} // 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