AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeReplicationConfigsResult.h
1
6#pragma once
7#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/dms/model/ReplicationConfig.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace DatabaseMigrationService
26{
27namespace Model
28{
35 {
36 public:
37 AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationConfigsResult() = default;
40
41
43
48 inline const Aws::String& GetMarker() const { return m_marker; }
49 template<typename MarkerT = Aws::String>
50 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
51 template<typename MarkerT = Aws::String>
52 DescribeReplicationConfigsResult& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
54
56
60 inline const Aws::Vector<ReplicationConfig>& GetReplicationConfigs() const { return m_replicationConfigs; }
61 template<typename ReplicationConfigsT = Aws::Vector<ReplicationConfig>>
62 void SetReplicationConfigs(ReplicationConfigsT&& value) { m_replicationConfigsHasBeenSet = true; m_replicationConfigs = std::forward<ReplicationConfigsT>(value); }
63 template<typename ReplicationConfigsT = Aws::Vector<ReplicationConfig>>
64 DescribeReplicationConfigsResult& WithReplicationConfigs(ReplicationConfigsT&& value) { SetReplicationConfigs(std::forward<ReplicationConfigsT>(value)); return *this;}
65 template<typename ReplicationConfigsT = ReplicationConfig>
66 DescribeReplicationConfigsResult& AddReplicationConfigs(ReplicationConfigsT&& value) { m_replicationConfigsHasBeenSet = true; m_replicationConfigs.emplace_back(std::forward<ReplicationConfigsT>(value)); return *this; }
68
70
71 inline const Aws::String& GetRequestId() const { return m_requestId; }
72 template<typename RequestIdT = Aws::String>
73 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
74 template<typename RequestIdT = Aws::String>
75 DescribeReplicationConfigsResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
77 private:
78
79 Aws::String m_marker;
80 bool m_markerHasBeenSet = false;
81
82 Aws::Vector<ReplicationConfig> m_replicationConfigs;
83 bool m_replicationConfigsHasBeenSet = false;
84
85 Aws::String m_requestId;
86 bool m_requestIdHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace DatabaseMigrationService
91} // 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