AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DescribeIntegrationsRequest.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/rds/RDSRequest.h>
10#include <aws/rds/RDS_EXPORTS.h>
11#include <aws/rds/model/Filter.h>
12
13#include <utility>
14
15namespace Aws {
16namespace RDS {
17namespace Model {
18
22 public:
23 AWS_RDS_API DescribeIntegrationsRequest() = 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 "DescribeIntegrations"; }
30
31 AWS_RDS_API Aws::String SerializePayload() const override;
32
33 protected:
34 AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
35
36 public:
38
41 inline const Aws::String& GetIntegrationIdentifier() const { return m_integrationIdentifier; }
42 inline bool IntegrationIdentifierHasBeenSet() const { return m_integrationIdentifierHasBeenSet; }
43 template <typename IntegrationIdentifierT = Aws::String>
44 void SetIntegrationIdentifier(IntegrationIdentifierT&& value) {
45 m_integrationIdentifierHasBeenSet = true;
46 m_integrationIdentifier = std::forward<IntegrationIdentifierT>(value);
47 }
48 template <typename IntegrationIdentifierT = Aws::String>
49 DescribeIntegrationsRequest& WithIntegrationIdentifier(IntegrationIdentifierT&& value) {
50 SetIntegrationIdentifier(std::forward<IntegrationIdentifierT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
60 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
61 template <typename FiltersT = Aws::Vector<Filter>>
62 void SetFilters(FiltersT&& value) {
63 m_filtersHasBeenSet = true;
64 m_filters = std::forward<FiltersT>(value);
65 }
66 template <typename FiltersT = Aws::Vector<Filter>>
68 SetFilters(std::forward<FiltersT>(value));
69 return *this;
70 }
71 template <typename FiltersT = Filter>
73 m_filtersHasBeenSet = true;
74 m_filters.emplace_back(std::forward<FiltersT>(value));
75 return *this;
76 }
78
80
87 inline int GetMaxRecords() const { return m_maxRecords; }
88 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
89 inline void SetMaxRecords(int value) {
90 m_maxRecordsHasBeenSet = true;
91 m_maxRecords = value;
92 }
94 SetMaxRecords(value);
95 return *this;
96 }
98
100
106 inline const Aws::String& GetMarker() const { return m_marker; }
107 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
108 template <typename MarkerT = Aws::String>
109 void SetMarker(MarkerT&& value) {
110 m_markerHasBeenSet = true;
111 m_marker = std::forward<MarkerT>(value);
112 }
113 template <typename MarkerT = Aws::String>
115 SetMarker(std::forward<MarkerT>(value));
116 return *this;
117 }
119 private:
120 Aws::String m_integrationIdentifier;
121
122 Aws::Vector<Filter> m_filters;
123
124 int m_maxRecords{0};
125
126 Aws::String m_marker;
127 bool m_integrationIdentifierHasBeenSet = false;
128 bool m_filtersHasBeenSet = false;
129 bool m_maxRecordsHasBeenSet = false;
130 bool m_markerHasBeenSet = false;
131};
132
133} // namespace Model
134} // namespace RDS
135} // namespace Aws
AWS_RDS_API Aws::String SerializePayload() const override
DescribeIntegrationsRequest & WithFilters(FiltersT &&value)
AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
const Aws::Vector< Filter > & GetFilters() const
void SetIntegrationIdentifier(IntegrationIdentifierT &&value)
DescribeIntegrationsRequest & AddFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
AWS_RDS_API DescribeIntegrationsRequest()=default
DescribeIntegrationsRequest & WithMarker(MarkerT &&value)
DescribeIntegrationsRequest & WithMaxRecords(int value)
DescribeIntegrationsRequest & WithIntegrationIdentifier(IntegrationIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector