AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeDBClusterParametersRequest.h
1
6#pragma once
7#include <aws/neptune/Neptune_EXPORTS.h>
8#include <aws/neptune/NeptuneRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/neptune/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Neptune
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_NEPTUNE_API DescribeDBClusterParametersRequest() = 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 "DescribeDBClusterParameters"; }
33
34 AWS_NEPTUNE_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
47 inline const Aws::String& GetDBClusterParameterGroupName() const { return m_dBClusterParameterGroupName; }
48 inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; }
49 template<typename DBClusterParameterGroupNameT = Aws::String>
50 void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::forward<DBClusterParameterGroupNameT>(value); }
51 template<typename DBClusterParameterGroupNameT = Aws::String>
52 DescribeDBClusterParametersRequest& WithDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { SetDBClusterParameterGroupName(std::forward<DBClusterParameterGroupNameT>(value)); return *this;}
54
56
61 inline const Aws::String& GetSource() const { return m_source; }
62 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
63 template<typename SourceT = Aws::String>
64 void SetSource(SourceT&& value) { m_sourceHasBeenSet = true; m_source = std::forward<SourceT>(value); }
65 template<typename SourceT = Aws::String>
66 DescribeDBClusterParametersRequest& WithSource(SourceT&& value) { SetSource(std::forward<SourceT>(value)); return *this;}
68
70
73 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
74 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
75 template<typename FiltersT = Aws::Vector<Filter>>
76 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
77 template<typename FiltersT = Aws::Vector<Filter>>
78 DescribeDBClusterParametersRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
79 template<typename FiltersT = Filter>
80 DescribeDBClusterParametersRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
82
84
90 inline int GetMaxRecords() const { return m_maxRecords; }
91 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
92 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
93 inline DescribeDBClusterParametersRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
95
97
103 inline const Aws::String& GetMarker() const { return m_marker; }
104 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
105 template<typename MarkerT = Aws::String>
106 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
107 template<typename MarkerT = Aws::String>
108 DescribeDBClusterParametersRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
110 private:
111
112 Aws::String m_dBClusterParameterGroupName;
113 bool m_dBClusterParameterGroupNameHasBeenSet = false;
114
115 Aws::String m_source;
116 bool m_sourceHasBeenSet = false;
117
118 Aws::Vector<Filter> m_filters;
119 bool m_filtersHasBeenSet = false;
120
121 int m_maxRecords{0};
122 bool m_maxRecordsHasBeenSet = false;
123
124 Aws::String m_marker;
125 bool m_markerHasBeenSet = false;
126 };
127
128} // namespace Model
129} // namespace Neptune
130} // namespace Aws
AWS_NEPTUNE_API Aws::String SerializePayload() const override
DescribeDBClusterParametersRequest & WithFilters(FiltersT &&value)
DescribeDBClusterParametersRequest & WithDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
DescribeDBClusterParametersRequest & WithSource(SourceT &&value)
AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeDBClusterParametersRequest & WithMarker(MarkerT &&value)
void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
DescribeDBClusterParametersRequest & AddFilters(FiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector