public static interface CfnServerlessCluster.VpcConfigProperty
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.*; VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder() .subnetIds(List.of("subnetIds")) // the properties below are optional .securityGroups(List.of("securityGroups")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnServerlessCluster.VpcConfigProperty.Builder
A builder for
CfnServerlessCluster.VpcConfigProperty |
static class |
CfnServerlessCluster.VpcConfigProperty.Jsii$Proxy
An implementation for
CfnServerlessCluster.VpcConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnServerlessCluster.VpcConfigProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getSecurityGroups()
Specifies up to five security groups that control inbound and outbound traffic for the serverless cluster.
|
java.util.List<java.lang.String> |
getSubnetIds()
A list of subnets in at least two different Availability Zones that host your client applications.
|
java.util.List<java.lang.String> getSubnetIds()
We recommend that you specify a backup subnet in a different Availability Zone for failover in case of an outage.
default java.util.List<java.lang.String> getSecurityGroups()
static CfnServerlessCluster.VpcConfigProperty.Builder builder()