AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateIntegrationTablePropertiesRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/glue/model/SourceTableConfig.h>
11#include <aws/glue/model/TargetTableConfig.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Glue
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateIntegrationTableProperties"; }
33
34 AWS_GLUE_API Aws::String SerializePayload() const override;
35
37
38
40
43 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
44 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
45 template<typename ResourceArnT = Aws::String>
46 void SetResourceArn(ResourceArnT&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::forward<ResourceArnT>(value); }
47 template<typename ResourceArnT = Aws::String>
48 UpdateIntegrationTablePropertiesRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
50
52
55 inline const Aws::String& GetTableName() const { return m_tableName; }
56 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
57 template<typename TableNameT = Aws::String>
58 void SetTableName(TableNameT&& value) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
59 template<typename TableNameT = Aws::String>
60 UpdateIntegrationTablePropertiesRequest& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
62
64
67 inline const SourceTableConfig& GetSourceTableConfig() const { return m_sourceTableConfig; }
68 inline bool SourceTableConfigHasBeenSet() const { return m_sourceTableConfigHasBeenSet; }
69 template<typename SourceTableConfigT = SourceTableConfig>
70 void SetSourceTableConfig(SourceTableConfigT&& value) { m_sourceTableConfigHasBeenSet = true; m_sourceTableConfig = std::forward<SourceTableConfigT>(value); }
71 template<typename SourceTableConfigT = SourceTableConfig>
72 UpdateIntegrationTablePropertiesRequest& WithSourceTableConfig(SourceTableConfigT&& value) { SetSourceTableConfig(std::forward<SourceTableConfigT>(value)); return *this;}
74
76
79 inline const TargetTableConfig& GetTargetTableConfig() const { return m_targetTableConfig; }
80 inline bool TargetTableConfigHasBeenSet() const { return m_targetTableConfigHasBeenSet; }
81 template<typename TargetTableConfigT = TargetTableConfig>
82 void SetTargetTableConfig(TargetTableConfigT&& value) { m_targetTableConfigHasBeenSet = true; m_targetTableConfig = std::forward<TargetTableConfigT>(value); }
83 template<typename TargetTableConfigT = TargetTableConfig>
84 UpdateIntegrationTablePropertiesRequest& WithTargetTableConfig(TargetTableConfigT&& value) { SetTargetTableConfig(std::forward<TargetTableConfigT>(value)); return *this;}
86 private:
87
88 Aws::String m_resourceArn;
89 bool m_resourceArnHasBeenSet = false;
90
91 Aws::String m_tableName;
92 bool m_tableNameHasBeenSet = false;
93
94 SourceTableConfig m_sourceTableConfig;
95 bool m_sourceTableConfigHasBeenSet = false;
96
97 TargetTableConfig m_targetTableConfig;
98 bool m_targetTableConfigHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace Glue
103} // 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