Interface CfnClusterPropsMixin.VpcConnectivitySaslProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.VpcConnectivitySaslProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.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.mixins.preview.services.msk.mixins.*;
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 forCfnClusterPropsMixin.VpcConnectivitySaslPropertystatic final classAn implementation forCfnClusterPropsMixin.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
IResolvableorCfnClusterPropsMixin.VpcConnectivityIamProperty- See Also:
-
getScram
Details for SASL/SCRAM client authentication for VpcConnectivity.Returns union: either
IResolvableorCfnClusterPropsMixin.VpcConnectivityScramProperty- See Also:
-
builder
-