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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomPlugin.CustomPluginLocationPropertystatic final classAn implementation forCfnCustomPlugin.CustomPluginLocationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.Returns union: either
IResolvableorCfnCustomPlugin.S3LocationProperty- See Also:
-
builder
-