AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DescribeParametersRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dax/DAXRequest.h>
9#include <aws/dax/DAX_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace DAX {
15namespace Model {
16
20 public:
21 AWS_DAX_API DescribeParametersRequest() = 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 "DescribeParameters"; }
28
29 AWS_DAX_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetParameterGroupName() const { return m_parameterGroupName; }
38 inline bool ParameterGroupNameHasBeenSet() const { return m_parameterGroupNameHasBeenSet; }
39 template <typename ParameterGroupNameT = Aws::String>
40 void SetParameterGroupName(ParameterGroupNameT&& value) {
41 m_parameterGroupNameHasBeenSet = true;
42 m_parameterGroupName = std::forward<ParameterGroupNameT>(value);
43 }
44 template <typename ParameterGroupNameT = Aws::String>
45 DescribeParametersRequest& WithParameterGroupName(ParameterGroupNameT&& value) {
46 SetParameterGroupName(std::forward<ParameterGroupNameT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetSource() const { return m_source; }
57 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
58 template <typename SourceT = Aws::String>
59 void SetSource(SourceT&& value) {
60 m_sourceHasBeenSet = true;
61 m_source = std::forward<SourceT>(value);
62 }
63 template <typename SourceT = Aws::String>
65 SetSource(std::forward<SourceT>(value));
66 return *this;
67 }
69
71
77 inline int GetMaxResults() const { return m_maxResults; }
78 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
79 inline void SetMaxResults(int value) {
80 m_maxResultsHasBeenSet = true;
81 m_maxResults = value;
82 }
84 SetMaxResults(value);
85 return *this;
86 }
88
90
96 inline const Aws::String& GetNextToken() const { return m_nextToken; }
97 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
98 template <typename NextTokenT = Aws::String>
99 void SetNextToken(NextTokenT&& value) {
100 m_nextTokenHasBeenSet = true;
101 m_nextToken = std::forward<NextTokenT>(value);
102 }
103 template <typename NextTokenT = Aws::String>
105 SetNextToken(std::forward<NextTokenT>(value));
106 return *this;
107 }
109 private:
110 Aws::String m_parameterGroupName;
111
112 Aws::String m_source;
113
114 int m_maxResults{0};
115
116 Aws::String m_nextToken;
117 bool m_parameterGroupNameHasBeenSet = false;
118 bool m_sourceHasBeenSet = false;
119 bool m_maxResultsHasBeenSet = false;
120 bool m_nextTokenHasBeenSet = false;
121};
122
123} // namespace Model
124} // namespace DAX
125} // namespace Aws
virtual const char * GetServiceRequestName() const override
void SetParameterGroupName(ParameterGroupNameT &&value)
DescribeParametersRequest & WithMaxResults(int value)
DescribeParametersRequest & WithParameterGroupName(ParameterGroupNameT &&value)
AWS_DAX_API Aws::String SerializePayload() const override
AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DAX_API DescribeParametersRequest()=default
DescribeParametersRequest & WithSource(SourceT &&value)
DescribeParametersRequest & WithNextToken(NextTokenT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String