public static interface CfnCluster.VpcConnectivityClientAuthenticationProperty
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.*; VpcConnectivityClientAuthenticationProperty vpcConnectivityClientAuthenticationProperty = VpcConnectivityClientAuthenticationProperty.builder() .sasl(VpcConnectivitySaslProperty.builder() .iam(VpcConnectivityIamProperty.builder() .enabled(false) .build()) .scram(VpcConnectivityScramProperty.builder() .enabled(false) .build()) .build()) .tls(VpcConnectivityTlsProperty.builder() .enabled(false) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCluster.VpcConnectivityClientAuthenticationProperty.Builder
A builder for
CfnCluster.VpcConnectivityClientAuthenticationProperty |
static class |
CfnCluster.VpcConnectivityClientAuthenticationProperty.Jsii$Proxy
An implementation for
CfnCluster.VpcConnectivityClientAuthenticationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCluster.VpcConnectivityClientAuthenticationProperty.Builder |
builder() |
default java.lang.Object |
getSasl()
`CfnCluster.VpcConnectivityClientAuthenticationProperty.Sasl`.
|
default java.lang.Object |
getTls()
`CfnCluster.VpcConnectivityClientAuthenticationProperty.Tls`.
|