Interface CfnConnector.CustomPluginProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnConnector.CustomPluginProperty.Jsii$Proxy
- Enclosing class:
 - CfnConnector
 
@Stability(Stable)
public static interface CfnConnector.CustomPluginProperty
extends software.amazon.jsii.JsiiSerializable
A plugin is an AWS resource that contains the code that defines a connector's 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.*;
 CustomPluginProperty customPluginProperty = CustomPluginProperty.builder()
         .customPluginArn("customPluginArn")
         .revision(123)
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.CustomPluginPropertystatic final classAn implementation forCfnConnector.CustomPluginProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the custom plugin.The revision of the custom plugin.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getCustomPluginArn
The Amazon Resource Name (ARN) of the custom plugin. - 
getRevision
The revision of the custom plugin. - 
builder
 
 -