AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateIntegrationResourcePropertyRequest.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/SourceProcessingProperties.h>
11#include <aws/glue/model/TargetProcessingProperties.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 "CreateIntegrationResourceProperty"; }
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 CreateIntegrationResourcePropertyRequest& WithResourceArn(ResourceArnT&& value) { SetResourceArn(std::forward<ResourceArnT>(value)); return *this;}
50
52
55 inline const SourceProcessingProperties& GetSourceProcessingProperties() const { return m_sourceProcessingProperties; }
56 inline bool SourceProcessingPropertiesHasBeenSet() const { return m_sourceProcessingPropertiesHasBeenSet; }
57 template<typename SourceProcessingPropertiesT = SourceProcessingProperties>
58 void SetSourceProcessingProperties(SourceProcessingPropertiesT&& value) { m_sourceProcessingPropertiesHasBeenSet = true; m_sourceProcessingProperties = std::forward<SourceProcessingPropertiesT>(value); }
59 template<typename SourceProcessingPropertiesT = SourceProcessingProperties>
60 CreateIntegrationResourcePropertyRequest& WithSourceProcessingProperties(SourceProcessingPropertiesT&& value) { SetSourceProcessingProperties(std::forward<SourceProcessingPropertiesT>(value)); return *this;}
62
64
67 inline const TargetProcessingProperties& GetTargetProcessingProperties() const { return m_targetProcessingProperties; }
68 inline bool TargetProcessingPropertiesHasBeenSet() const { return m_targetProcessingPropertiesHasBeenSet; }
69 template<typename TargetProcessingPropertiesT = TargetProcessingProperties>
70 void SetTargetProcessingProperties(TargetProcessingPropertiesT&& value) { m_targetProcessingPropertiesHasBeenSet = true; m_targetProcessingProperties = std::forward<TargetProcessingPropertiesT>(value); }
71 template<typename TargetProcessingPropertiesT = TargetProcessingProperties>
72 CreateIntegrationResourcePropertyRequest& WithTargetProcessingProperties(TargetProcessingPropertiesT&& value) { SetTargetProcessingProperties(std::forward<TargetProcessingPropertiesT>(value)); return *this;}
74 private:
75
76 Aws::String m_resourceArn;
77 bool m_resourceArnHasBeenSet = false;
78
79 SourceProcessingProperties m_sourceProcessingProperties;
80 bool m_sourceProcessingPropertiesHasBeenSet = false;
81
82 TargetProcessingProperties m_targetProcessingProperties;
83 bool m_targetProcessingPropertiesHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace Glue
88} // 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