interface CfnCustomPluginProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KafkaConnect.CfnCustomPluginProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awskafkaconnect#CfnCustomPluginProps |
![]() | software.amazon.awscdk.services.kafkaconnect.CfnCustomPluginProps |
![]() | aws_cdk.aws_kafkaconnect.CfnCustomPluginProps |
![]() | aws-cdk-lib » aws_kafkaconnect » CfnCustomPluginProps |
Properties for defining a CfnCustomPlugin
.
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-lib';
const cfnCustomPluginProps: kafkaconnect.CfnCustomPluginProps = {
contentType: 'contentType',
location: {
s3Location: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
// the properties below are optional
objectVersion: 'objectVersion',
},
},
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
content | string | The format of the plugin file. |
location | IResolvable | Custom | Information about the location of the custom plugin. |
name | string | The name of the custom plugin. |
description? | string | The description of the custom plugin. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
contentType
Type:
string
The format of the plugin file.
location
Type:
IResolvable
|
Custom
Information about the location of the custom plugin.
name
Type:
string
The name of the custom plugin.
description?
Type:
string
(optional)
The description of the custom plugin.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.