@Stability(value=Stable)
public static interface CfnCluster.ClientAuthenticationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ClientAuthenticationProperty clientAuthenticationProperty = ClientAuthenticationProperty.builder()
.sasl(SaslProperty.builder()
.iam(IamProperty.builder()
.enabled(false)
.build())
.scram(ScramProperty.builder()
.enabled(false)
.build())
.build())
.tls(TlsProperty.builder()
.certificateAuthorityArnList(List.of("certificateAuthorityArnList"))
.enabled(false)
.build())
.unauthenticated(UnauthenticatedProperty.builder()
.enabled(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.ClientAuthenticationProperty.Builder
A builder for
CfnCluster.ClientAuthenticationProperty |
static class |
CfnCluster.ClientAuthenticationProperty.Jsii$Proxy
An implementation for
CfnCluster.ClientAuthenticationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.ClientAuthenticationProperty.Builder |
builder() |
default Object |
getSasl()
Details for ClientAuthentication using SASL.
|
default Object |
getTls()
Details for client authentication using TLS.
|
default Object |
getUnauthenticated()
Details for ClientAuthentication using no authentication.
|
@Stability(value=Stable) @Nullable default Object getSasl()
@Stability(value=Stable) @Nullable default Object getTls()
@Stability(value=Stable) @Nullable default Object getUnauthenticated()
@Stability(value=Stable) static CfnCluster.ClientAuthenticationProperty.Builder builder()
Copyright © 2022. All rights reserved.