interface CustomPluginLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnCustomPluginPropsMixin.CustomPluginLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnCustomPluginPropsMixin_CustomPluginLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnCustomPluginPropsMixin.CustomPluginLocationProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnCustomPluginPropsMixin.CustomPluginLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnCustomPluginPropsMixin » CustomPluginLocationProperty |
Information about the location of a custom plugin.
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 customPluginLocationProperty: kafkaconnect_mixins.CfnCustomPluginPropsMixin.CustomPluginLocationProperty = {
s3Location: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
objectVersion: 'objectVersion',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3. |
s3Location?
Type:
IResolvable | S3
(optional)
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.

.NET
Go
Java
Python
TypeScript