Interface CfnCluster.VpcConnectivityClientAuthenticationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.VpcConnectivityClientAuthenticationProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.VpcConnectivityClientAuthenticationProperty
extends software.amazon.jsii.JsiiSerializable
Includes all client authentication information for VpcConnectivity.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.VpcConnectivityClientAuthenticationPropertystatic final classAn implementation forCfnCluster.VpcConnectivityClientAuthenticationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSasl
Details for VpcConnectivity ClientAuthentication using SASL.Returns union: either
IResolvableorCfnCluster.VpcConnectivitySaslProperty- See Also:
-
getTls
Details for VpcConnectivity ClientAuthentication using TLS.Returns union: either
IResolvableorCfnCluster.VpcConnectivityTlsProperty- See Also:
-
builder
-