Interface CfnWorkerConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkerConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:20.762Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkerConfigurationProps
static final class
An 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
-