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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnector.CustomPluginProperty
static final class
An 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.- See Also:
-
getRevision
The revision of the custom plugin.- See Also:
-
builder
-