Interface CfnWorkerConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkerConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.592Z")
@Stability(Stable)
public interface CfnWorkerConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnWorkerConfigurationPropsMixin.
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.*;
CfnWorkerConfigurationMixinProps cfnWorkerConfigurationMixinProps = CfnWorkerConfigurationMixinProps.builder()
.description("description")
.name("name")
.propertiesFileContent("propertiesFileContent")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkerConfigurationMixinPropsstatic final classAn implementation forCfnWorkerConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of a worker configuration.default StringgetName()The name of the worker configuration.default StringBase64 encoded contents of the connect-distributed.properties file.getTags()A collection of tags associated with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of a worker configuration.- See Also:
-
getName
The name of the worker configuration.- See Also:
-
getPropertiesFileContent
Base64 encoded contents of the connect-distributed.properties file.- See Also:
-
getTags
A collection of tags associated with a resource.- See Also:
-
builder
-