Interface CfnConnector.PluginProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnector.PluginProperty.Jsii$Proxy
Enclosing class:
CfnConnector

@Stability(Stable) public static interface CfnConnector.PluginProperty extends software.amazon.jsii.JsiiSerializable
A plugin is an AWS resource that contains the code that defines your connector logic.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.kafkaconnect.*;
 PluginProperty pluginProperty = PluginProperty.builder()
         .customPlugin(CustomPluginProperty.builder()
                 .customPluginArn("customPluginArn")
                 .revision(123)
                 .build())
         .build();
 

See Also: