AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDBClusterSnapshotsResult.h
1
6#pragma once
7#include <aws/rds/RDS_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/rds/model/ResponseMetadata.h>
11#include <aws/rds/model/DBClusterSnapshot.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 RDS
27{
28namespace Model
29{
38 {
39 public:
43
44
46
52 inline const Aws::String& GetMarker() const{ return m_marker; }
53 inline void SetMarker(const Aws::String& value) { m_marker = value; }
54 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
55 inline void SetMarker(const char* value) { m_marker.assign(value); }
56 inline DescribeDBClusterSnapshotsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
57 inline DescribeDBClusterSnapshotsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
58 inline DescribeDBClusterSnapshotsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
60
62
65 inline const Aws::Vector<DBClusterSnapshot>& GetDBClusterSnapshots() const{ return m_dBClusterSnapshots; }
66 inline void SetDBClusterSnapshots(const Aws::Vector<DBClusterSnapshot>& value) { m_dBClusterSnapshots = value; }
67 inline void SetDBClusterSnapshots(Aws::Vector<DBClusterSnapshot>&& value) { m_dBClusterSnapshots = std::move(value); }
70 inline DescribeDBClusterSnapshotsResult& AddDBClusterSnapshots(const DBClusterSnapshot& value) { m_dBClusterSnapshots.push_back(value); return *this; }
71 inline DescribeDBClusterSnapshotsResult& AddDBClusterSnapshots(DBClusterSnapshot&& value) { m_dBClusterSnapshots.push_back(std::move(value)); return *this; }
73
75
76 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
77 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
78 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
82 private:
83
84 Aws::String m_marker;
85
86 Aws::Vector<DBClusterSnapshot> m_dBClusterSnapshots;
87
88 ResponseMetadata m_responseMetadata;
89 };
90
91} // namespace Model
92} // namespace RDS
93} // namespace Aws
DescribeDBClusterSnapshotsResult & WithMarker(Aws::String &&value)
DescribeDBClusterSnapshotsResult & AddDBClusterSnapshots(const DBClusterSnapshot &value)
DescribeDBClusterSnapshotsResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeDBClusterSnapshotsResult & WithMarker(const char *value)
DescribeDBClusterSnapshotsResult & WithResponseMetadata(const ResponseMetadata &value)
DescribeDBClusterSnapshotsResult & WithDBClusterSnapshots(Aws::Vector< DBClusterSnapshot > &&value)
void SetDBClusterSnapshots(const Aws::Vector< DBClusterSnapshot > &value)
const Aws::Vector< DBClusterSnapshot > & GetDBClusterSnapshots() const
DescribeDBClusterSnapshotsResult & WithDBClusterSnapshots(const Aws::Vector< DBClusterSnapshot > &value)
DescribeDBClusterSnapshotsResult & AddDBClusterSnapshots(DBClusterSnapshot &&value)
AWS_RDS_API DescribeDBClusterSnapshotsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
void SetDBClusterSnapshots(Aws::Vector< DBClusterSnapshot > &&value)
DescribeDBClusterSnapshotsResult & WithMarker(const Aws::String &value)
AWS_RDS_API DescribeDBClusterSnapshotsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument