interface CustomPluginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.CustomPluginProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_CustomPluginProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.CustomPluginProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.CustomPluginProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » CfnConnectorPropsMixin » CustomPluginProperty |
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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const customPluginProperty: kafkaconnect.CfnConnectorPropsMixin.CustomPluginProperty = {
customPluginArn: 'customPluginArn',
revision: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The Amazon Resource Name (ARN) of the custom plugin. |
| revision? | number | The revision of the custom plugin. |
customPluginArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the custom plugin.
revision?
Type:
number
(optional)
The revision of the custom plugin.

.NET
Go
Java
Python
TypeScript