AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DescribeReplicationConfigsResult.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/dms/DatabaseMigrationService_EXPORTS.h>
10#include <aws/dms/model/ReplicationConfig.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace DatabaseMigrationService {
24namespace Model {
31 public:
32 AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult() = default;
34 AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult& operator=(
36
38
43 inline const Aws::String& GetMarker() const { return m_marker; }
44 template <typename MarkerT = Aws::String>
45 void SetMarker(MarkerT&& value) {
46 m_markerHasBeenSet = true;
47 m_marker = std::forward<MarkerT>(value);
48 }
49 template <typename MarkerT = Aws::String>
51 SetMarker(std::forward<MarkerT>(value));
52 return *this;
53 }
55
57
61 inline const Aws::Vector<ReplicationConfig>& GetReplicationConfigs() const { return m_replicationConfigs; }
62 template <typename ReplicationConfigsT = Aws::Vector<ReplicationConfig>>
63 void SetReplicationConfigs(ReplicationConfigsT&& value) {
64 m_replicationConfigsHasBeenSet = true;
65 m_replicationConfigs = std::forward<ReplicationConfigsT>(value);
66 }
67 template <typename ReplicationConfigsT = Aws::Vector<ReplicationConfig>>
69 SetReplicationConfigs(std::forward<ReplicationConfigsT>(value));
70 return *this;
71 }
72 template <typename ReplicationConfigsT = ReplicationConfig>
74 m_replicationConfigsHasBeenSet = true;
75 m_replicationConfigs.emplace_back(std::forward<ReplicationConfigsT>(value));
76 return *this;
77 }
79
81
82 inline const Aws::String& GetRequestId() const { return m_requestId; }
83 template <typename RequestIdT = Aws::String>
84 void SetRequestId(RequestIdT&& value) {
85 m_requestIdHasBeenSet = true;
86 m_requestId = std::forward<RequestIdT>(value);
87 }
88 template <typename RequestIdT = Aws::String>
90 SetRequestId(std::forward<RequestIdT>(value));
91 return *this;
92 }
94 private:
95 Aws::String m_marker;
96
97 Aws::Vector<ReplicationConfig> m_replicationConfigs;
98
99 Aws::String m_requestId;
100 bool m_markerHasBeenSet = false;
101 bool m_replicationConfigsHasBeenSet = false;
102 bool m_requestIdHasBeenSet = false;
103};
104
105} // namespace Model
106} // namespace DatabaseMigrationService
107} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeReplicationConfigsResult & WithReplicationConfigs(ReplicationConfigsT &&value)
DescribeReplicationConfigsResult & AddReplicationConfigs(ReplicationConfigsT &&value)
AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue