AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeGlobalClustersResult.h
1
6#pragma once
7#include <aws/docdb/DocDB_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/docdb/model/ResponseMetadata.h>
11#include <aws/docdb/model/GlobalCluster.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 DocDB
27{
28namespace Model
29{
31 {
32 public:
36
37
39
42 inline const Aws::String& GetMarker() const{ return m_marker; }
43 inline void SetMarker(const Aws::String& value) { m_marker = value; }
44 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
45 inline void SetMarker(const char* value) { m_marker.assign(value); }
46 inline DescribeGlobalClustersResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
47 inline DescribeGlobalClustersResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
48 inline DescribeGlobalClustersResult& WithMarker(const char* value) { SetMarker(value); return *this;}
50
52
55 inline const Aws::Vector<GlobalCluster>& GetGlobalClusters() const{ return m_globalClusters; }
56 inline void SetGlobalClusters(const Aws::Vector<GlobalCluster>& value) { m_globalClusters = value; }
57 inline void SetGlobalClusters(Aws::Vector<GlobalCluster>&& value) { m_globalClusters = std::move(value); }
60 inline DescribeGlobalClustersResult& AddGlobalClusters(const GlobalCluster& value) { m_globalClusters.push_back(value); return *this; }
61 inline DescribeGlobalClustersResult& AddGlobalClusters(GlobalCluster&& value) { m_globalClusters.push_back(std::move(value)); return *this; }
63
65
66 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
67 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
68 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
72 private:
73
74 Aws::String m_marker;
75
76 Aws::Vector<GlobalCluster> m_globalClusters;
77
78 ResponseMetadata m_responseMetadata;
79 };
80
81} // namespace Model
82} // namespace DocDB
83} // namespace Aws
AWS_DOCDB_API DescribeGlobalClustersResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeGlobalClustersResult & AddGlobalClusters(const GlobalCluster &value)
DescribeGlobalClustersResult & WithGlobalClusters(Aws::Vector< GlobalCluster > &&value)
AWS_DOCDB_API DescribeGlobalClustersResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
void SetGlobalClusters(Aws::Vector< GlobalCluster > &&value)
DescribeGlobalClustersResult & WithResponseMetadata(const ResponseMetadata &value)
DescribeGlobalClustersResult & WithMarker(const Aws::String &value)
DescribeGlobalClustersResult & WithGlobalClusters(const Aws::Vector< GlobalCluster > &value)
DescribeGlobalClustersResult & AddGlobalClusters(GlobalCluster &&value)
DescribeGlobalClustersResult & WithMarker(const char *value)
const Aws::Vector< GlobalCluster > & GetGlobalClusters() const
void SetGlobalClusters(const Aws::Vector< GlobalCluster > &value)
DescribeGlobalClustersResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeGlobalClustersResult & 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