@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.988Z") @Stability(value=Stable) public interface CfnConfigurationProps extends software.amazon.jsii.JsiiSerializable
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 String |
getDescription()
The description of the configuration.
|
default List<String> |
getKafkaVersionsList()
A list of the versions of Apache Kafka with which you can use this MSK configuration.
|
String |
getName()
The name of the configuration.
|
String |
getServerProperties()
Contents of the server.properties file.
|
@Stability(value=Stable) @NotNull String getName()
Configuration names are strings that match the regex "^[0-9A-Za-z][0-9A-Za-z-]{0,}$".
@Stability(value=Stable) @NotNull String getServerProperties()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<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.
@Stability(value=Stable) static CfnConfigurationProps.Builder builder()
CfnConfigurationProps.Builder of CfnConfigurationPropsCopyright © 2022. All rights reserved.