interface CustomPluginFileDescriptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnCustomPluginPropsMixin.CustomPluginFileDescriptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnCustomPluginPropsMixin_CustomPluginFileDescriptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnCustomPluginPropsMixin.CustomPluginFileDescriptionProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnCustomPluginPropsMixin.CustomPluginFileDescriptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnCustomPluginPropsMixin » CustomPluginFileDescriptionProperty |
Details about a custom plugin file.
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 customPluginFileDescriptionProperty: kafkaconnect_mixins.CfnCustomPluginPropsMixin.CustomPluginFileDescriptionProperty = {
fileMd5: 'fileMd5',
fileSize: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The hex-encoded MD5 checksum of the custom plugin file. |
| file | number | The size in bytes of the custom plugin file. |
fileMd5?
Type:
string
(optional)
The hex-encoded MD5 checksum of the custom plugin file.
You can use it to validate the file.
fileSize?
Type:
number
(optional)
The size in bytes of the custom plugin file.
You can use it to validate the file.

.NET
Go
Java
Python
TypeScript