AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeEngineVersionsRequest.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 DescribeEngineVersionsRequest() = 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 "DescribeEngineVersions"; }
28
29 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
30
31 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
32
34
40 inline int GetMaxRecords() const { return m_maxRecords; }
41 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
42 inline void SetMaxRecords(int value) {
43 m_maxRecordsHasBeenSet = true;
44 m_maxRecords = value;
45 }
47 SetMaxRecords(value);
48 return *this;
49 }
51
53
58 inline const Aws::String& GetMarker() const { return m_marker; }
59 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
60 template <typename MarkerT = Aws::String>
61 void SetMarker(MarkerT&& value) {
62 m_markerHasBeenSet = true;
63 m_marker = std::forward<MarkerT>(value);
64 }
65 template <typename MarkerT = Aws::String>
67 SetMarker(std::forward<MarkerT>(value));
68 return *this;
69 }
71 private:
72 int m_maxRecords{0};
73
74 Aws::String m_marker;
75 bool m_maxRecordsHasBeenSet = false;
76 bool m_markerHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace DatabaseMigrationService
81} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeEngineVersionsRequest()=default
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