AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDBProxyEndpointsResult.h
1
6#pragma once
7#include <aws/rds/RDS_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/rds/model/ResponseMetadata.h>
11#include <aws/rds/model/DBProxyEndpoint.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{
31 {
32 public:
36
37
39
43 inline const Aws::Vector<DBProxyEndpoint>& GetDBProxyEndpoints() const{ return m_dBProxyEndpoints; }
44 inline void SetDBProxyEndpoints(const Aws::Vector<DBProxyEndpoint>& value) { m_dBProxyEndpoints = value; }
45 inline void SetDBProxyEndpoints(Aws::Vector<DBProxyEndpoint>&& value) { m_dBProxyEndpoints = std::move(value); }
48 inline DescribeDBProxyEndpointsResult& AddDBProxyEndpoints(const DBProxyEndpoint& value) { m_dBProxyEndpoints.push_back(value); return *this; }
49 inline DescribeDBProxyEndpointsResult& AddDBProxyEndpoints(DBProxyEndpoint&& value) { m_dBProxyEndpoints.push_back(std::move(value)); return *this; }
51
53
58 inline const Aws::String& GetMarker() const{ return m_marker; }
59 inline void SetMarker(const Aws::String& value) { m_marker = value; }
60 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
61 inline void SetMarker(const char* value) { m_marker.assign(value); }
62 inline DescribeDBProxyEndpointsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
63 inline DescribeDBProxyEndpointsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
64 inline DescribeDBProxyEndpointsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
66
68
69 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
70 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
71 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
75 private:
76
77 Aws::Vector<DBProxyEndpoint> m_dBProxyEndpoints;
78
79 Aws::String m_marker;
80
81 ResponseMetadata m_responseMetadata;
82 };
83
84} // namespace Model
85} // namespace RDS
86} // namespace Aws
AWS_RDS_API DescribeDBProxyEndpointsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeDBProxyEndpointsResult & WithDBProxyEndpoints(const Aws::Vector< DBProxyEndpoint > &value)
DescribeDBProxyEndpointsResult & WithMarker(const char *value)
DescribeDBProxyEndpointsResult & AddDBProxyEndpoints(DBProxyEndpoint &&value)
const Aws::Vector< DBProxyEndpoint > & GetDBProxyEndpoints() const
DescribeDBProxyEndpointsResult & AddDBProxyEndpoints(const DBProxyEndpoint &value)
AWS_RDS_API DescribeDBProxyEndpointsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeDBProxyEndpointsResult & WithResponseMetadata(ResponseMetadata &&value)
void SetDBProxyEndpoints(const Aws::Vector< DBProxyEndpoint > &value)
DescribeDBProxyEndpointsResult & WithMarker(const Aws::String &value)
DescribeDBProxyEndpointsResult & WithDBProxyEndpoints(Aws::Vector< DBProxyEndpoint > &&value)
DescribeDBProxyEndpointsResult & WithMarker(Aws::String &&value)
DescribeDBProxyEndpointsResult & WithResponseMetadata(const ResponseMetadata &value)
void SetDBProxyEndpoints(Aws::Vector< DBProxyEndpoint > &&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