AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Plugin.h
1
6#pragma once
7#include <aws/kafkaconnect/KafkaConnect_EXPORTS.h>
8#include <aws/kafkaconnect/model/CustomPlugin.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace KafkaConnect
22{
23namespace Model
24{
25
32 class Plugin
33 {
34 public:
35 AWS_KAFKACONNECT_API Plugin();
36 AWS_KAFKACONNECT_API Plugin(Aws::Utils::Json::JsonView jsonValue);
37 AWS_KAFKACONNECT_API Plugin& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_KAFKACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const CustomPlugin& GetCustomPlugin() const{ return m_customPlugin; }
46 inline bool CustomPluginHasBeenSet() const { return m_customPluginHasBeenSet; }
47 inline void SetCustomPlugin(const CustomPlugin& value) { m_customPluginHasBeenSet = true; m_customPlugin = value; }
48 inline void SetCustomPlugin(CustomPlugin&& value) { m_customPluginHasBeenSet = true; m_customPlugin = std::move(value); }
49 inline Plugin& WithCustomPlugin(const CustomPlugin& value) { SetCustomPlugin(value); return *this;}
50 inline Plugin& WithCustomPlugin(CustomPlugin&& value) { SetCustomPlugin(std::move(value)); return *this;}
52 private:
53
54 CustomPlugin m_customPlugin;
55 bool m_customPluginHasBeenSet = false;
56 };
57
58} // namespace Model
59} // namespace KafkaConnect
60} // namespace Aws
Plugin & WithCustomPlugin(const CustomPlugin &value)
Definition Plugin.h:49
AWS_KAFKACONNECT_API Plugin()
AWS_KAFKACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
bool CustomPluginHasBeenSet() const
Definition Plugin.h:46
AWS_KAFKACONNECT_API Plugin & operator=(Aws::Utils::Json::JsonView jsonValue)
const CustomPlugin & GetCustomPlugin() const
Definition Plugin.h:45
void SetCustomPlugin(const CustomPlugin &value)
Definition Plugin.h:47
Plugin & WithCustomPlugin(CustomPlugin &&value)
Definition Plugin.h:50
AWS_KAFKACONNECT_API Plugin(Aws::Utils::Json::JsonView jsonValue)
void SetCustomPlugin(CustomPlugin &&value)
Definition Plugin.h:48
Aws::Utils::Json::JsonValue JsonValue