AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeIntegrationsRequest.h
1
6#pragma once
7#include <aws/rds/RDS_EXPORTS.h>
8#include <aws/rds/RDSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/rds/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace RDS
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_RDS_API DescribeIntegrationsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DescribeIntegrations"; }
33
34 AWS_RDS_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::String& GetIntegrationIdentifier() const { return m_integrationIdentifier; }
46 inline bool IntegrationIdentifierHasBeenSet() const { return m_integrationIdentifierHasBeenSet; }
47 template<typename IntegrationIdentifierT = Aws::String>
48 void SetIntegrationIdentifier(IntegrationIdentifierT&& value) { m_integrationIdentifierHasBeenSet = true; m_integrationIdentifier = std::forward<IntegrationIdentifierT>(value); }
49 template<typename IntegrationIdentifierT = Aws::String>
50 DescribeIntegrationsRequest& WithIntegrationIdentifier(IntegrationIdentifierT&& value) { SetIntegrationIdentifier(std::forward<IntegrationIdentifierT>(value)); return *this;}
52
54
57 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
58 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
59 template<typename FiltersT = Aws::Vector<Filter>>
60 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
61 template<typename FiltersT = Aws::Vector<Filter>>
62 DescribeIntegrationsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
63 template<typename FiltersT = Filter>
64 DescribeIntegrationsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
66
68
75 inline int GetMaxRecords() const { return m_maxRecords; }
76 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
77 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
78 inline DescribeIntegrationsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
80
82
88 inline const Aws::String& GetMarker() const { return m_marker; }
89 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
90 template<typename MarkerT = Aws::String>
91 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
92 template<typename MarkerT = Aws::String>
93 DescribeIntegrationsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
95 private:
96
97 Aws::String m_integrationIdentifier;
98 bool m_integrationIdentifierHasBeenSet = false;
99
100 Aws::Vector<Filter> m_filters;
101 bool m_filtersHasBeenSet = false;
102
103 int m_maxRecords{0};
104 bool m_maxRecordsHasBeenSet = false;
105
106 Aws::String m_marker;
107 bool m_markerHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace RDS
112} // 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