AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DescribeIntegrationsResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/rds/RDS_EXPORTS.h>
10#include <aws/rds/model/Integration.h>
11#include <aws/rds/model/ResponseMetadata.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Xml {
21class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace RDS {
25namespace Model {
27 public:
28 AWS_RDS_API DescribeIntegrationsResult() = default;
31
33
37 inline const Aws::String& GetMarker() const { return m_marker; }
38 template <typename MarkerT = Aws::String>
39 void SetMarker(MarkerT&& value) {
40 m_markerHasBeenSet = true;
41 m_marker = std::forward<MarkerT>(value);
42 }
43 template <typename MarkerT = Aws::String>
45 SetMarker(std::forward<MarkerT>(value));
46 return *this;
47 }
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) {
57 m_integrationsHasBeenSet = true;
58 m_integrations = std::forward<IntegrationsT>(value);
59 }
60 template <typename IntegrationsT = Aws::Vector<Integration>>
62 SetIntegrations(std::forward<IntegrationsT>(value));
63 return *this;
64 }
65 template <typename IntegrationsT = Integration>
67 m_integrationsHasBeenSet = true;
68 m_integrations.emplace_back(std::forward<IntegrationsT>(value));
69 return *this;
70 }
72
74
75 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
76 template <typename ResponseMetadataT = ResponseMetadata>
77 void SetResponseMetadata(ResponseMetadataT&& value) {
78 m_responseMetadataHasBeenSet = true;
79 m_responseMetadata = std::forward<ResponseMetadataT>(value);
80 }
81 template <typename ResponseMetadataT = ResponseMetadata>
83 SetResponseMetadata(std::forward<ResponseMetadataT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_marker;
89
90 Aws::Vector<Integration> m_integrations;
91
92 ResponseMetadata m_responseMetadata;
93 bool m_markerHasBeenSet = false;
94 bool m_integrationsHasBeenSet = false;
95 bool m_responseMetadataHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace RDS
100} // 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