AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeParametersRequest.h
1
6#pragma once
7#include <aws/dax/DAX_EXPORTS.h>
8#include <aws/dax/DAXRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DAX
15{
16namespace Model
17{
18
22 {
23 public:
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 "DescribeParameters"; }
31
32 AWS_DAX_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetParameterGroupName() const{ return m_parameterGroupName; }
42 inline bool ParameterGroupNameHasBeenSet() const { return m_parameterGroupNameHasBeenSet; }
43 inline void SetParameterGroupName(const Aws::String& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = value; }
44 inline void SetParameterGroupName(Aws::String&& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = std::move(value); }
45 inline void SetParameterGroupName(const char* value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName.assign(value); }
47 inline DescribeParametersRequest& WithParameterGroupName(Aws::String&& value) { SetParameterGroupName(std::move(value)); return *this;}
48 inline DescribeParametersRequest& WithParameterGroupName(const char* value) { SetParameterGroupName(value); return *this;}
50
52
56 inline const Aws::String& GetSource() const{ return m_source; }
57 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
58 inline void SetSource(const Aws::String& value) { m_sourceHasBeenSet = true; m_source = value; }
59 inline void SetSource(Aws::String&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); }
60 inline void SetSource(const char* value) { m_sourceHasBeenSet = true; m_source.assign(value); }
61 inline DescribeParametersRequest& WithSource(const Aws::String& value) { SetSource(value); return *this;}
62 inline DescribeParametersRequest& WithSource(Aws::String&& value) { SetSource(std::move(value)); return *this;}
63 inline DescribeParametersRequest& WithSource(const char* value) { SetSource(value); return *this;}
65
67
73 inline int GetMaxResults() const{ return m_maxResults; }
74 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
75 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
76 inline DescribeParametersRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
78
80
86 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
87 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
88 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
89 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
90 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
91 inline DescribeParametersRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
92 inline DescribeParametersRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
93 inline DescribeParametersRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
95 private:
96
97 Aws::String m_parameterGroupName;
98 bool m_parameterGroupNameHasBeenSet = false;
99
100 Aws::String m_source;
101 bool m_sourceHasBeenSet = false;
102
103 int m_maxResults;
104 bool m_maxResultsHasBeenSet = false;
105
106 Aws::String m_nextToken;
107 bool m_nextTokenHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace DAX
112} // namespace Aws
virtual const char * GetServiceRequestName() const override
DescribeParametersRequest & WithParameterGroupName(Aws::String &&value)
DescribeParametersRequest & WithMaxResults(int value)
DescribeParametersRequest & WithParameterGroupName(const Aws::String &value)
DescribeParametersRequest & WithSource(Aws::String &&value)
DescribeParametersRequest & WithParameterGroupName(const char *value)
AWS_DAX_API Aws::String SerializePayload() const override
DescribeParametersRequest & WithNextToken(Aws::String &&value)
DescribeParametersRequest & WithNextToken(const char *value)
AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeParametersRequest & WithSource(const Aws::String &value)
DescribeParametersRequest & WithSource(const char *value)
DescribeParametersRequest & WithNextToken(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String