AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeMetadataModelChildrenRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dms/DatabaseMigrationServiceRequest.h>
9#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
10#include <aws/dms/model/OriginTypeValue.h>
11
12#include <utility>
13
14namespace Aws {
15namespace DatabaseMigrationService {
16namespace Model {
17
21 public:
22 AWS_DATABASEMIGRATIONSERVICE_API DescribeMetadataModelChildrenRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DescribeMetadataModelChildren"; }
29
30 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
31
32 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
33
35
42 inline const Aws::String& GetSelectionRules() const { return m_selectionRules; }
43 inline bool SelectionRulesHasBeenSet() const { return m_selectionRulesHasBeenSet; }
44 template <typename SelectionRulesT = Aws::String>
45 void SetSelectionRules(SelectionRulesT&& value) {
46 m_selectionRulesHasBeenSet = true;
47 m_selectionRules = std::forward<SelectionRulesT>(value);
48 }
49 template <typename SelectionRulesT = Aws::String>
51 SetSelectionRules(std::forward<SelectionRulesT>(value));
52 return *this;
53 }
55
57
60 inline const Aws::String& GetMigrationProjectIdentifier() const { return m_migrationProjectIdentifier; }
61 inline bool MigrationProjectIdentifierHasBeenSet() const { return m_migrationProjectIdentifierHasBeenSet; }
62 template <typename MigrationProjectIdentifierT = Aws::String>
63 void SetMigrationProjectIdentifier(MigrationProjectIdentifierT&& value) {
64 m_migrationProjectIdentifierHasBeenSet = true;
65 m_migrationProjectIdentifier = std::forward<MigrationProjectIdentifierT>(value);
66 }
67 template <typename MigrationProjectIdentifierT = Aws::String>
69 SetMigrationProjectIdentifier(std::forward<MigrationProjectIdentifierT>(value));
70 return *this;
71 }
73
75
79 inline OriginTypeValue GetOrigin() const { return m_origin; }
80 inline bool OriginHasBeenSet() const { return m_originHasBeenSet; }
81 inline void SetOrigin(OriginTypeValue value) {
82 m_originHasBeenSet = true;
83 m_origin = value;
84 }
86 SetOrigin(value);
87 return *this;
88 }
90
92
97 inline const Aws::String& GetMarker() const { return m_marker; }
98 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
99 template <typename MarkerT = Aws::String>
100 void SetMarker(MarkerT&& value) {
101 m_markerHasBeenSet = true;
102 m_marker = std::forward<MarkerT>(value);
103 }
104 template <typename MarkerT = Aws::String>
106 SetMarker(std::forward<MarkerT>(value));
107 return *this;
108 }
110
112
117 inline int GetMaxRecords() const { return m_maxRecords; }
118 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
119 inline void SetMaxRecords(int value) {
120 m_maxRecordsHasBeenSet = true;
121 m_maxRecords = value;
122 }
124 SetMaxRecords(value);
125 return *this;
126 }
128 private:
129 Aws::String m_selectionRules;
130
131 Aws::String m_migrationProjectIdentifier;
132
134
135 Aws::String m_marker;
136
137 int m_maxRecords{0};
138 bool m_selectionRulesHasBeenSet = false;
139 bool m_migrationProjectIdentifierHasBeenSet = false;
140 bool m_originHasBeenSet = false;
141 bool m_markerHasBeenSet = false;
142 bool m_maxRecordsHasBeenSet = false;
143};
144
145} // namespace Model
146} // namespace DatabaseMigrationService
147} // namespace Aws
DescribeMetadataModelChildrenRequest & WithSelectionRules(SelectionRulesT &&value)
AWS_DATABASEMIGRATIONSERVICE_API DescribeMetadataModelChildrenRequest()=default
DescribeMetadataModelChildrenRequest & WithMigrationProjectIdentifier(MigrationProjectIdentifierT &&value)
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
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