AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeIntegrationsResult.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/Integration.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:
33 AWS_RDS_API DescribeIntegrationsResult() = default;
36
37
39
43 inline const Aws::String& GetMarker() const { return m_marker; }
44 template<typename MarkerT = Aws::String>
45 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
46 template<typename MarkerT = Aws::String>
47 DescribeIntegrationsResult& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
49
51
54 inline const Aws::Vector<Integration>& GetIntegrations() const { return m_integrations; }
55 template<typename IntegrationsT = Aws::Vector<Integration>>
56 void SetIntegrations(IntegrationsT&& value) { m_integrationsHasBeenSet = true; m_integrations = std::forward<IntegrationsT>(value); }
57 template<typename IntegrationsT = Aws::Vector<Integration>>
58 DescribeIntegrationsResult& WithIntegrations(IntegrationsT&& value) { SetIntegrations(std::forward<IntegrationsT>(value)); return *this;}
59 template<typename IntegrationsT = Integration>
60 DescribeIntegrationsResult& AddIntegrations(IntegrationsT&& value) { m_integrationsHasBeenSet = true; m_integrations.emplace_back(std::forward<IntegrationsT>(value)); return *this; }
62
64
65 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
66 template<typename ResponseMetadataT = ResponseMetadata>
67 void SetResponseMetadata(ResponseMetadataT&& value) { m_responseMetadataHasBeenSet = true; m_responseMetadata = std::forward<ResponseMetadataT>(value); }
68 template<typename ResponseMetadataT = ResponseMetadata>
69 DescribeIntegrationsResult& WithResponseMetadata(ResponseMetadataT&& value) { SetResponseMetadata(std::forward<ResponseMetadataT>(value)); return *this;}
71 private:
72
73 Aws::String m_marker;
74 bool m_markerHasBeenSet = false;
75
76 Aws::Vector<Integration> m_integrations;
77 bool m_integrationsHasBeenSet = false;
78
79 ResponseMetadata m_responseMetadata;
80 bool m_responseMetadataHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace RDS
85} // namespace Aws
const Aws::Vector< Integration > & GetIntegrations() const
DescribeIntegrationsResult & WithResponseMetadata(ResponseMetadataT &&value)
AWS_RDS_API DescribeIntegrationsResult()=default
DescribeIntegrationsResult & WithIntegrations(IntegrationsT &&value)
AWS_RDS_API DescribeIntegrationsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_RDS_API DescribeIntegrationsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeIntegrationsResult & AddIntegrations(IntegrationsT &&value)
DescribeIntegrationsResult & WithMarker(MarkerT &&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