@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:56.213Z")
public interface CfnConfigurationProps
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.msk.*; CfnConfigurationProps cfnConfigurationProps = CfnConfigurationProps.builder() .name("name") .serverProperties("serverProperties") // the properties below are optional .description("description") .kafkaVersionsList(List.of("kafkaVersionsList")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConfigurationProps.Builder
A builder for
CfnConfigurationProps |
static class |
CfnConfigurationProps.Jsii$Proxy
An implementation for
CfnConfigurationProps |
Modifier and Type | Method and Description |
---|---|
static CfnConfigurationProps.Builder |
builder() |
default java.lang.String |
getDescription()
The description of the configuration.
|
default java.util.List<java.lang.String> |
getKafkaVersionsList()
A list of the versions of Apache Kafka with which you can use this MSK configuration.
|
java.lang.String |
getName()
The name of the configuration.
|
java.lang.String |
getServerProperties()
Contents of the server.properties file.
|
java.lang.String getName()
Configuration names are strings that match the regex "^[0-9A-Za-z][0-9A-Za-z-]{0,}$".
java.lang.String getServerProperties()
default java.lang.String getDescription()
default java.util.List<java.lang.String> getKafkaVersionsList()
You can use this configuration for an MSK cluster only if the Apache Kafka version specified for the cluster appears in this list.
static CfnConfigurationProps.Builder builder()
CfnConfigurationProps.Builder
of CfnConfigurationProps