Interface CfnCustomPlugin.CustomPluginLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCustomPlugin.CustomPluginLocationProperty.Jsii$Proxy
Enclosing class:
CfnCustomPlugin

@Stability(Stable) public static interface CfnCustomPlugin.CustomPluginLocationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kafkaconnect.*;
 CustomPluginLocationProperty customPluginLocationProperty = CustomPluginLocationProperty.builder()
         .s3Location(S3LocationProperty.builder()
                 .bucketArn("bucketArn")
                 .fileKey("fileKey")
                 // the properties below are optional
                 .objectVersion("objectVersion")
                 .build())
         .build();
 

See Also: