interface CustomPluginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.CustomPluginProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_CustomPluginProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.CustomPluginProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.CustomPluginProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » 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 { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const customPluginProperty: kafkaconnect_mixins.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