@Stability(value=Stable)
public static interface CfnCluster.BrokerNodeGroupInfoProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
BrokerNodeGroupInfoProperty brokerNodeGroupInfoProperty = BrokerNodeGroupInfoProperty.builder()
.clientSubnets(List.of("clientSubnets"))
.instanceType("instanceType")
// the properties below are optional
.brokerAzDistribution("brokerAzDistribution")
.connectivityInfo(ConnectivityInfoProperty.builder()
.publicAccess(PublicAccessProperty.builder()
.type("type")
.build())
.build())
.securityGroups(List.of("securityGroups"))
.storageInfo(StorageInfoProperty.builder()
.ebsStorageInfo(EBSStorageInfoProperty.builder()
.volumeSize(123)
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.BrokerNodeGroupInfoProperty.Builder
A builder for
CfnCluster.BrokerNodeGroupInfoProperty |
static class |
CfnCluster.BrokerNodeGroupInfoProperty.Jsii$Proxy
An implementation for
CfnCluster.BrokerNodeGroupInfoProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.BrokerNodeGroupInfoProperty.Builder |
builder() |
default String |
getBrokerAzDistribution()
`CfnCluster.BrokerNodeGroupInfoProperty.BrokerAZDistribution`.
|
List<String> |
getClientSubnets()
`CfnCluster.BrokerNodeGroupInfoProperty.ClientSubnets`.
|
default Object |
getConnectivityInfo()
`CfnCluster.BrokerNodeGroupInfoProperty.ConnectivityInfo`.
|
String |
getInstanceType()
`CfnCluster.BrokerNodeGroupInfoProperty.InstanceType`.
|
default List<String> |
getSecurityGroups()
`CfnCluster.BrokerNodeGroupInfoProperty.SecurityGroups`.
|
default Object |
getStorageInfo()
`CfnCluster.BrokerNodeGroupInfoProperty.StorageInfo`.
|
@Stability(value=Stable) @Nullable default String getBrokerAzDistribution()
@Stability(value=Stable) @NotNull List<String> getClientSubnets()
@Stability(value=Stable) @Nullable default Object getConnectivityInfo()
@Stability(value=Stable) @NotNull String getInstanceType()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroups()
@Stability(value=Stable) @Nullable default Object getStorageInfo()
@Stability(value=Stable) static CfnCluster.BrokerNodeGroupInfoProperty.Builder builder()
Copyright © 2021. All rights reserved.