AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeSchemasRequest.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
23 public:
24 AWS_DATABASEMIGRATIONSERVICE_API DescribeSchemasRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeSchemas"; }
31
32 AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override;
33
34 AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
37
41 inline const Aws::String& GetEndpointArn() const { return m_endpointArn; }
42 inline bool EndpointArnHasBeenSet() const { return m_endpointArnHasBeenSet; }
43 template <typename EndpointArnT = Aws::String>
44 void SetEndpointArn(EndpointArnT&& value) {
45 m_endpointArnHasBeenSet = true;
46 m_endpointArn = std::forward<EndpointArnT>(value);
47 }
48 template <typename EndpointArnT = Aws::String>
49 DescribeSchemasRequest& WithEndpointArn(EndpointArnT&& value) {
50 SetEndpointArn(std::forward<EndpointArnT>(value));
51 return *this;
52 }
54
56
62 inline int GetMaxRecords() const { return m_maxRecords; }
63 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
64 inline void SetMaxRecords(int value) {
65 m_maxRecordsHasBeenSet = true;
66 m_maxRecords = value;
67 }
69 SetMaxRecords(value);
70 return *this;
71 }
73
75
80 inline const Aws::String& GetMarker() const { return m_marker; }
81 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
82 template <typename MarkerT = Aws::String>
83 void SetMarker(MarkerT&& value) {
84 m_markerHasBeenSet = true;
85 m_marker = std::forward<MarkerT>(value);
86 }
87 template <typename MarkerT = Aws::String>
89 SetMarker(std::forward<MarkerT>(value));
90 return *this;
91 }
93 private:
94 Aws::String m_endpointArn;
95
96 int m_maxRecords{0};
97
98 Aws::String m_marker;
99 bool m_endpointArnHasBeenSet = false;
100 bool m_maxRecordsHasBeenSet = false;
101 bool m_markerHasBeenSet = false;
102};
103
104} // namespace Model
105} // namespace DatabaseMigrationService
106} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override
AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATABASEMIGRATIONSERVICE_API DescribeSchemasRequest()=default
DescribeSchemasRequest & WithEndpointArn(EndpointArnT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String