interface PluginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.PluginProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_PluginProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.PluginProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.PluginProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » CfnConnectorPropsMixin » PluginProperty |
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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const pluginProperty: kafkaconnect.CfnConnectorPropsMixin.PluginProperty = {
customPlugin: {
customPluginArn: 'customPluginArn',
revision: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Custom | Details about a custom plugin. |
customPlugin?
Type:
IResolvable | Custom
(optional)
Details about a custom plugin.

.NET
Go
Java
Python
TypeScript