Interface CfnWorkerConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkerConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:07.918Z")
@Stability(Stable)
public interface CfnWorkerConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWorkerConfiguration.
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.*;
CfnWorkerConfigurationProps cfnWorkerConfigurationProps = CfnWorkerConfigurationProps.builder()
.name("name")
.propertiesFileContent("propertiesFileContent")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkerConfigurationPropsstatic final classAn implementation forCfnWorkerConfigurationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the worker configuration.- See Also:
-
getPropertiesFileContent
Base64 encoded contents of the connect-distributed.properties file.- See Also:
-
getDescription
The description of a worker configuration.- See Also:
-
getTags
A collection of tags associated with a resource.- See Also:
-
builder
-