Interface CfnCustomPluginMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomPluginMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.590Z")
@Stability(Stable)
public interface CfnCustomPluginMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCustomPluginPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.*;
CfnCustomPluginMixinProps cfnCustomPluginMixinProps = CfnCustomPluginMixinProps.builder()
.contentType("contentType")
.description("description")
.location(CustomPluginLocationProperty.builder()
.s3Location(S3LocationProperty.builder()
.bucketArn("bucketArn")
.fileKey("fileKey")
.objectVersion("objectVersion")
.build())
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomPluginMixinPropsstatic final classAn implementation forCfnCustomPluginMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe format of the plugin file.default StringThe description of the custom plugin.default ObjectInformation about the location of the custom plugin.default StringgetName()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:
-
getDescription
The description of the custom plugin.- See Also:
-
getLocation
Information about the location of the custom plugin.Returns union: either
IResolvableorCfnCustomPluginPropsMixin.CustomPluginLocationProperty- See Also:
-
getName
The name of the custom plugin.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnCustomPluginMixinProps.BuilderofCfnCustomPluginMixinProps
-