AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
GetIntegrationTablePropertiesResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/Glue_EXPORTS.h>
9#include <aws/glue/model/SourceTableConfig.h>
10#include <aws/glue/model/TargetTableConfig.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 Glue {
24namespace Model {
26 public:
27 AWS_GLUE_API GetIntegrationTablePropertiesResult() = default;
30
32
40 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
41 template <typename ResourceArnT = Aws::String>
42 void SetResourceArn(ResourceArnT&& value) {
43 m_resourceArnHasBeenSet = true;
44 m_resourceArn = std::forward<ResourceArnT>(value);
45 }
46 template <typename ResourceArnT = Aws::String>
48 SetResourceArn(std::forward<ResourceArnT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetTableName() const { return m_tableName; }
58 template <typename TableNameT = Aws::String>
59 void SetTableName(TableNameT&& value) {
60 m_tableNameHasBeenSet = true;
61 m_tableName = std::forward<TableNameT>(value);
62 }
63 template <typename TableNameT = Aws::String>
65 SetTableName(std::forward<TableNameT>(value));
66 return *this;
67 }
69
71
74 inline const SourceTableConfig& GetSourceTableConfig() const { return m_sourceTableConfig; }
75 template <typename SourceTableConfigT = SourceTableConfig>
76 void SetSourceTableConfig(SourceTableConfigT&& value) {
77 m_sourceTableConfigHasBeenSet = true;
78 m_sourceTableConfig = std::forward<SourceTableConfigT>(value);
79 }
80 template <typename SourceTableConfigT = SourceTableConfig>
82 SetSourceTableConfig(std::forward<SourceTableConfigT>(value));
83 return *this;
84 }
86
88
91 inline const TargetTableConfig& GetTargetTableConfig() const { return m_targetTableConfig; }
92 template <typename TargetTableConfigT = TargetTableConfig>
93 void SetTargetTableConfig(TargetTableConfigT&& value) {
94 m_targetTableConfigHasBeenSet = true;
95 m_targetTableConfig = std::forward<TargetTableConfigT>(value);
96 }
97 template <typename TargetTableConfigT = TargetTableConfig>
99 SetTargetTableConfig(std::forward<TargetTableConfigT>(value));
100 return *this;
101 }
103
105
106 inline const Aws::String& GetRequestId() const { return m_requestId; }
107 template <typename RequestIdT = Aws::String>
108 void SetRequestId(RequestIdT&& value) {
109 m_requestIdHasBeenSet = true;
110 m_requestId = std::forward<RequestIdT>(value);
111 }
112 template <typename RequestIdT = Aws::String>
114 SetRequestId(std::forward<RequestIdT>(value));
115 return *this;
116 }
118 private:
119 Aws::String m_resourceArn;
120
121 Aws::String m_tableName;
122
123 SourceTableConfig m_sourceTableConfig;
124
125 TargetTableConfig m_targetTableConfig;
126
127 Aws::String m_requestId;
128 bool m_resourceArnHasBeenSet = false;
129 bool m_tableNameHasBeenSet = false;
130 bool m_sourceTableConfigHasBeenSet = false;
131 bool m_targetTableConfigHasBeenSet = false;
132 bool m_requestIdHasBeenSet = false;
133};
134
135} // namespace Model
136} // namespace Glue
137} // namespace Aws
GetIntegrationTablePropertiesResult & WithSourceTableConfig(SourceTableConfigT &&value)
GetIntegrationTablePropertiesResult & WithTargetTableConfig(TargetTableConfigT &&value)
GetIntegrationTablePropertiesResult & WithRequestId(RequestIdT &&value)
AWS_GLUE_API GetIntegrationTablePropertiesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetIntegrationTablePropertiesResult & WithTableName(TableNameT &&value)
GetIntegrationTablePropertiesResult & WithResourceArn(ResourceArnT &&value)
AWS_GLUE_API GetIntegrationTablePropertiesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue