AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeClusterParameterGroupsResult.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/redshift/model/ResponseMetadata.h>
11#include <aws/redshift/model/ClusterParameterGroup.h>
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Xml
22{
23 class XmlDocument;
24} // namespace Xml
25} // namespace Utils
26namespace Redshift
27{
28namespace Model
29{
37 {
38 public:
42
43
45
53 inline const Aws::String& GetMarker() const{ return m_marker; }
54 inline void SetMarker(const Aws::String& value) { m_marker = value; }
55 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
56 inline void SetMarker(const char* value) { m_marker.assign(value); }
57 inline DescribeClusterParameterGroupsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
58 inline DescribeClusterParameterGroupsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
59 inline DescribeClusterParameterGroupsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
61
63
67 inline const Aws::Vector<ClusterParameterGroup>& GetParameterGroups() const{ return m_parameterGroups; }
68 inline void SetParameterGroups(const Aws::Vector<ClusterParameterGroup>& value) { m_parameterGroups = value; }
69 inline void SetParameterGroups(Aws::Vector<ClusterParameterGroup>&& value) { m_parameterGroups = std::move(value); }
72 inline DescribeClusterParameterGroupsResult& AddParameterGroups(const ClusterParameterGroup& value) { m_parameterGroups.push_back(value); return *this; }
73 inline DescribeClusterParameterGroupsResult& AddParameterGroups(ClusterParameterGroup&& value) { m_parameterGroups.push_back(std::move(value)); return *this; }
75
77
78 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
79 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
80 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
84 private:
85
86 Aws::String m_marker;
87
88 Aws::Vector<ClusterParameterGroup> m_parameterGroups;
89
90 ResponseMetadata m_responseMetadata;
91 };
92
93} // namespace Model
94} // namespace Redshift
95} // namespace Aws
const Aws::Vector< ClusterParameterGroup > & GetParameterGroups() const
void SetParameterGroups(const Aws::Vector< ClusterParameterGroup > &value)
DescribeClusterParameterGroupsResult & WithResponseMetadata(const ResponseMetadata &value)
AWS_REDSHIFT_API DescribeClusterParameterGroupsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeClusterParameterGroupsResult & WithParameterGroups(Aws::Vector< ClusterParameterGroup > &&value)
DescribeClusterParameterGroupsResult & WithMarker(const char *value)
AWS_REDSHIFT_API DescribeClusterParameterGroupsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeClusterParameterGroupsResult & AddParameterGroups(ClusterParameterGroup &&value)
DescribeClusterParameterGroupsResult & WithMarker(const Aws::String &value)
DescribeClusterParameterGroupsResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeClusterParameterGroupsResult & AddParameterGroups(const ClusterParameterGroup &value)
void SetParameterGroups(Aws::Vector< ClusterParameterGroup > &&value)
DescribeClusterParameterGroupsResult & WithParameterGroups(const Aws::Vector< ClusterParameterGroup > &value)
DescribeClusterParameterGroupsResult & WithMarker(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument