Interface CfnCustomPluginProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomPluginProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:20.761Z")
@Stability(Stable)
public interface CfnCustomPluginProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCustomPlugin
.
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.*; CfnCustomPluginProps cfnCustomPluginProps = CfnCustomPluginProps.builder() .contentType("contentType") .location(CustomPluginLocationProperty.builder() .s3Location(S3LocationProperty.builder() .bucketArn("bucketArn") .fileKey("fileKey") // the properties below are optional .objectVersion("objectVersion") .build()) .build()) .name("name") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCustomPluginProps
static final class
An implementation forCfnCustomPluginProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCustomPluginProps.Builder
builder()
The format of the plugin file.default String
The description of the custom plugin.Information about the location of the custom plugin.getName()
The name of the custom plugin.getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContentType
The format of the plugin file.- See Also:
-
getLocation
Information about the location of the custom plugin.- See Also:
-
getName
The name of the custom plugin.- See Also:
-
getDescription
The description of the custom plugin.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnCustomPluginProps.Builder
ofCfnCustomPluginProps
-