AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateIntegrationTablePropertiesRequest.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 "CreateIntegrationTableProperties"; }
33
34 AWS_GLUE_API Aws::String SerializePayload() const override;
35
37
38
40
48 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
49 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
50 template<typename ResourceArnT = Aws::String>
51 void SetResourceArn(ResourceArnT&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::forward<ResourceArnT>(value); }
52 template<typename ResourceArnT = Aws::String>
53 CreateIntegrationTablePropertiesRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
55
57
60 inline const Aws::String& GetTableName() const { return m_tableName; }
61 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
62 template<typename TableNameT = Aws::String>
63 void SetTableName(TableNameT&& value) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
64 template<typename TableNameT = Aws::String>
65 CreateIntegrationTablePropertiesRequest& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
67
69
74 inline const SourceTableConfig& GetSourceTableConfig() const { return m_sourceTableConfig; }
75 inline bool SourceTableConfigHasBeenSet() const { return m_sourceTableConfigHasBeenSet; }
76 template<typename SourceTableConfigT = SourceTableConfig>
77 void SetSourceTableConfig(SourceTableConfigT&& value) { m_sourceTableConfigHasBeenSet = true; m_sourceTableConfig = std::forward<SourceTableConfigT>(value); }
78 template<typename SourceTableConfigT = SourceTableConfig>
79 CreateIntegrationTablePropertiesRequest& WithSourceTableConfig(SourceTableConfigT&& value) { SetSourceTableConfig(std::forward<SourceTableConfigT>(value)); return *this;}
81
83
86 inline const TargetTableConfig& GetTargetTableConfig() const { return m_targetTableConfig; }
87 inline bool TargetTableConfigHasBeenSet() const { return m_targetTableConfigHasBeenSet; }
88 template<typename TargetTableConfigT = TargetTableConfig>
89 void SetTargetTableConfig(TargetTableConfigT&& value) { m_targetTableConfigHasBeenSet = true; m_targetTableConfig = std::forward<TargetTableConfigT>(value); }
90 template<typename TargetTableConfigT = TargetTableConfig>
91 CreateIntegrationTablePropertiesRequest& WithTargetTableConfig(TargetTableConfigT&& value) { SetTargetTableConfig(std::forward<TargetTableConfigT>(value)); return *this;}
93 private:
94
95 Aws::String m_resourceArn;
96 bool m_resourceArnHasBeenSet = false;
97
98 Aws::String m_tableName;
99 bool m_tableNameHasBeenSet = false;
100
101 SourceTableConfig m_sourceTableConfig;
102 bool m_sourceTableConfigHasBeenSet = false;
103
104 TargetTableConfig m_targetTableConfig;
105 bool m_targetTableConfigHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace Glue
110} // namespace Aws
CreateIntegrationTablePropertiesRequest & WithTargetTableConfig(TargetTableConfigT &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
CreateIntegrationTablePropertiesRequest & WithSourceTableConfig(SourceTableConfigT &&value)
CreateIntegrationTablePropertiesRequest & WithTableName(TableNameT &&value)
CreateIntegrationTablePropertiesRequest & WithResourceArn(ResourceArnT &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String