AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
UpdateIntegrationTablePropertiesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/glue/Glue_EXPORTS.h>
10#include <aws/glue/model/SourceTableConfig.h>
11#include <aws/glue/model/TargetTableConfig.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Glue {
17namespace Model {
18
22 public:
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "UpdateIntegrationTableProperties"; }
30
31 AWS_GLUE_API Aws::String SerializePayload() const override;
32
34
36
39 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
40 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
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 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
59 template <typename TableNameT = Aws::String>
60 void SetTableName(TableNameT&& value) {
61 m_tableNameHasBeenSet = true;
62 m_tableName = std::forward<TableNameT>(value);
63 }
64 template <typename TableNameT = Aws::String>
66 SetTableName(std::forward<TableNameT>(value));
67 return *this;
68 }
70
72
75 inline const SourceTableConfig& GetSourceTableConfig() const { return m_sourceTableConfig; }
76 inline bool SourceTableConfigHasBeenSet() const { return m_sourceTableConfigHasBeenSet; }
77 template <typename SourceTableConfigT = SourceTableConfig>
78 void SetSourceTableConfig(SourceTableConfigT&& value) {
79 m_sourceTableConfigHasBeenSet = true;
80 m_sourceTableConfig = std::forward<SourceTableConfigT>(value);
81 }
82 template <typename SourceTableConfigT = SourceTableConfig>
84 SetSourceTableConfig(std::forward<SourceTableConfigT>(value));
85 return *this;
86 }
88
90
93 inline const TargetTableConfig& GetTargetTableConfig() const { return m_targetTableConfig; }
94 inline bool TargetTableConfigHasBeenSet() const { return m_targetTableConfigHasBeenSet; }
95 template <typename TargetTableConfigT = TargetTableConfig>
96 void SetTargetTableConfig(TargetTableConfigT&& value) {
97 m_targetTableConfigHasBeenSet = true;
98 m_targetTableConfig = std::forward<TargetTableConfigT>(value);
99 }
100 template <typename TargetTableConfigT = TargetTableConfig>
102 SetTargetTableConfig(std::forward<TargetTableConfigT>(value));
103 return *this;
104 }
106 private:
107 Aws::String m_resourceArn;
108
109 Aws::String m_tableName;
110
111 SourceTableConfig m_sourceTableConfig;
112
113 TargetTableConfig m_targetTableConfig;
114 bool m_resourceArnHasBeenSet = false;
115 bool m_tableNameHasBeenSet = false;
116 bool m_sourceTableConfigHasBeenSet = false;
117 bool m_targetTableConfigHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace Glue
122} // namespace Aws
UpdateIntegrationTablePropertiesRequest & WithSourceTableConfig(SourceTableConfigT &&value)
UpdateIntegrationTablePropertiesRequest & WithTableName(TableNameT &&value)
UpdateIntegrationTablePropertiesRequest & WithResourceArn(ResourceArnT &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
UpdateIntegrationTablePropertiesRequest & WithTargetTableConfig(TargetTableConfigT &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String