AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeParameterGroupsRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace DAX
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_DAX_API DescribeParameterGroupsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeParameterGroups"; }
32
33 AWS_DAX_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::Vector<Aws::String>& GetParameterGroupNames() const { return m_parameterGroupNames; }
43 inline bool ParameterGroupNamesHasBeenSet() const { return m_parameterGroupNamesHasBeenSet; }
44 template<typename ParameterGroupNamesT = Aws::Vector<Aws::String>>
45 void SetParameterGroupNames(ParameterGroupNamesT&& value) { m_parameterGroupNamesHasBeenSet = true; m_parameterGroupNames = std::forward<ParameterGroupNamesT>(value); }
46 template<typename ParameterGroupNamesT = Aws::Vector<Aws::String>>
47 DescribeParameterGroupsRequest& WithParameterGroupNames(ParameterGroupNamesT&& value) { SetParameterGroupNames(std::forward<ParameterGroupNamesT>(value)); return *this;}
48 template<typename ParameterGroupNamesT = Aws::String>
49 DescribeParameterGroupsRequest& AddParameterGroupNames(ParameterGroupNamesT&& value) { m_parameterGroupNamesHasBeenSet = true; m_parameterGroupNames.emplace_back(std::forward<ParameterGroupNamesT>(value)); return *this; }
51
53
59 inline int GetMaxResults() const { return m_maxResults; }
60 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
61 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
62 inline DescribeParameterGroupsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
64
66
72 inline const Aws::String& GetNextToken() const { return m_nextToken; }
73 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
74 template<typename NextTokenT = Aws::String>
75 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
76 template<typename NextTokenT = Aws::String>
77 DescribeParameterGroupsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
79 private:
80
81 Aws::Vector<Aws::String> m_parameterGroupNames;
82 bool m_parameterGroupNamesHasBeenSet = false;
83
84 int m_maxResults{0};
85 bool m_maxResultsHasBeenSet = false;
86
87 Aws::String m_nextToken;
88 bool m_nextTokenHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace DAX
93} // namespace Aws
AWS_DAX_API Aws::String SerializePayload() const override
DescribeParameterGroupsRequest & WithMaxResults(int value)
const Aws::Vector< Aws::String > & GetParameterGroupNames() const
DescribeParameterGroupsRequest & WithParameterGroupNames(ParameterGroupNamesT &&value)
AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeParameterGroupsRequest & WithNextToken(NextTokenT &&value)
virtual const char * GetServiceRequestName() const override
DescribeParameterGroupsRequest & AddParameterGroupNames(ParameterGroupNamesT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector