/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A plugin is an AWS resource that contains the code that defines your
* connector logic. See Also:
AWS
* API Reference
Details about a custom plugin.
*/ inline const CustomPlugin& GetCustomPlugin() const{ return m_customPlugin; } /** *Details about a custom plugin.
*/ inline bool CustomPluginHasBeenSet() const { return m_customPluginHasBeenSet; } /** *Details about a custom plugin.
*/ inline void SetCustomPlugin(const CustomPlugin& value) { m_customPluginHasBeenSet = true; m_customPlugin = value; } /** *Details about a custom plugin.
*/ inline void SetCustomPlugin(CustomPlugin&& value) { m_customPluginHasBeenSet = true; m_customPlugin = std::move(value); } /** *Details about a custom plugin.
*/ inline Plugin& WithCustomPlugin(const CustomPlugin& value) { SetCustomPlugin(value); return *this;} /** *Details about a custom plugin.
*/ inline Plugin& WithCustomPlugin(CustomPlugin&& value) { SetCustomPlugin(std::move(value)); return *this;} private: CustomPlugin m_customPlugin; bool m_customPluginHasBeenSet = false; }; } // namespace Model } // namespace KafkaConnect } // namespace Aws