AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeEndpointSettingsRequest.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
11#include <utility>
12
13namespace Aws {
14namespace DatabaseMigrationService {
15namespace Model {
16
20 public:
21 AWS_DATABASEMIGRATIONSERVICE_API DescribeEndpointSettingsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeEndpointSettings"; }
28
29 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
30
31 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
32
34
37 inline const Aws::String& GetEngineName() const { return m_engineName; }
38 inline bool EngineNameHasBeenSet() const { return m_engineNameHasBeenSet; }
39 template <typename EngineNameT = Aws::String>
40 void SetEngineName(EngineNameT&& value) {
41 m_engineNameHasBeenSet = true;
42 m_engineName = std::forward<EngineNameT>(value);
43 }
44 template <typename EngineNameT = Aws::String>
46 SetEngineName(std::forward<EngineNameT>(value));
47 return *this;
48 }
50
52
58 inline int GetMaxRecords() const { return m_maxRecords; }
59 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
60 inline void SetMaxRecords(int value) {
61 m_maxRecordsHasBeenSet = true;
62 m_maxRecords = value;
63 }
65 SetMaxRecords(value);
66 return *this;
67 }
69
71
76 inline const Aws::String& GetMarker() const { return m_marker; }
77 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
78 template <typename MarkerT = Aws::String>
79 void SetMarker(MarkerT&& value) {
80 m_markerHasBeenSet = true;
81 m_marker = std::forward<MarkerT>(value);
82 }
83 template <typename MarkerT = Aws::String>
85 SetMarker(std::forward<MarkerT>(value));
86 return *this;
87 }
89 private:
90 Aws::String m_engineName;
91
92 int m_maxRecords{0};
93
94 Aws::String m_marker;
95 bool m_engineNameHasBeenSet = false;
96 bool m_maxRecordsHasBeenSet = false;
97 bool m_markerHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace DatabaseMigrationService
102} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeEndpointSettingsRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String