Interface CfnCluster.VpcConnectivitySaslProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.VpcConnectivitySaslProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.VpcConnectivitySaslProperty
extends software.amazon.jsii.JsiiSerializable
Details for client authentication using SASL 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.*;
VpcConnectivitySaslProperty vpcConnectivitySaslProperty = VpcConnectivitySaslProperty.builder()
.iam(VpcConnectivityIamProperty.builder()
.enabled(false)
.build())
.scram(VpcConnectivityScramProperty.builder()
.enabled(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.VpcConnectivitySaslPropertystatic final classAn implementation forCfnCluster.VpcConnectivitySaslProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIam
Details for ClientAuthentication using IAM for VpcConnectivity.Returns union: either
IResolvableorCfnCluster.VpcConnectivityIamProperty- See Also:
-
getScram
Details for SASL/SCRAM client authentication for VpcConnectivity.Returns union: either
IResolvableorCfnCluster.VpcConnectivityScramProperty- See Also:
-
builder
-