interface CfnCustomPluginMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnCustomPluginMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnCustomPluginMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnCustomPluginMixinProps |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnCustomPluginMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnCustomPluginMixinProps |
Properties for CfnCustomPluginPropsMixin.
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 cfnCustomPluginMixinProps: kafkaconnect_mixins.CfnCustomPluginMixinProps = {
contentType: 'contentType',
description: 'description',
location: {
s3Location: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
objectVersion: 'objectVersion',
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The format of the plugin file. |
| description? | string | The description of the custom plugin. |
| location? | IResolvable | Custom | Information about the location of the custom plugin. |
| name? | string | The name of the custom plugin. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
contentType?
Type:
string
(optional)
The format of the plugin file.
description?
Type:
string
(optional)
The description of the custom plugin.
location?
Type:
IResolvable | Custom
(optional)
Information about the location of the custom plugin.
name?
Type:
string
(optional)
The name of the custom plugin.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript