AWS SDK for C++

AWS SDK for C++ Version 1.11.690

Loading...
Searching...
No Matches
CreateIntegrationResourcePropertyRequest.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/SourceProcessingProperties.h>
11#include <aws/glue/model/TargetProcessingProperties.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 "CreateIntegrationResourceProperty"; }
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 SourceProcessingProperties& GetSourceProcessingProperties() const { return m_sourceProcessingProperties; }
58 inline bool SourceProcessingPropertiesHasBeenSet() const { return m_sourceProcessingPropertiesHasBeenSet; }
59 template <typename SourceProcessingPropertiesT = SourceProcessingProperties>
60 void SetSourceProcessingProperties(SourceProcessingPropertiesT&& value) {
61 m_sourceProcessingPropertiesHasBeenSet = true;
62 m_sourceProcessingProperties = std::forward<SourceProcessingPropertiesT>(value);
63 }
64 template <typename SourceProcessingPropertiesT = SourceProcessingProperties>
66 SetSourceProcessingProperties(std::forward<SourceProcessingPropertiesT>(value));
67 return *this;
68 }
70
72
75 inline const TargetProcessingProperties& GetTargetProcessingProperties() const { return m_targetProcessingProperties; }
76 inline bool TargetProcessingPropertiesHasBeenSet() const { return m_targetProcessingPropertiesHasBeenSet; }
77 template <typename TargetProcessingPropertiesT = TargetProcessingProperties>
78 void SetTargetProcessingProperties(TargetProcessingPropertiesT&& value) {
79 m_targetProcessingPropertiesHasBeenSet = true;
80 m_targetProcessingProperties = std::forward<TargetProcessingPropertiesT>(value);
81 }
82 template <typename TargetProcessingPropertiesT = TargetProcessingProperties>
84 SetTargetProcessingProperties(std::forward<TargetProcessingPropertiesT>(value));
85 return *this;
86 }
88 private:
89 Aws::String m_resourceArn;
90 bool m_resourceArnHasBeenSet = false;
91
92 SourceProcessingProperties m_sourceProcessingProperties;
93 bool m_sourceProcessingPropertiesHasBeenSet = false;
94
95 TargetProcessingProperties m_targetProcessingProperties;
96 bool m_targetProcessingPropertiesHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace Glue
101} // namespace Aws
AWS_GLUE_API Aws::String SerializePayload() const override
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
CreateIntegrationResourcePropertyRequest & WithResourceArn(ResourceArnT &&value)
CreateIntegrationResourcePropertyRequest & WithSourceProcessingProperties(SourceProcessingPropertiesT &&value)
CreateIntegrationResourcePropertyRequest & WithTargetProcessingProperties(TargetProcessingPropertiesT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String