Interface CfnCluster.TlsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.TlsProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.TlsProperty
extends software.amazon.jsii.JsiiSerializable
Details for client authentication using TLS.
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.*; TlsProperty tlsProperty = TlsProperty.builder() .certificateAuthorityArnList(List.of("certificateAuthorityArnList")) .enabled(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.TlsProperty
static final class
An implementation forCfnCluster.TlsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateAuthorityArnList
List of AWS Private CA ARNs. -
getEnabled
TLS authentication is enabled or not. -
builder
- Returns:
- a
CfnCluster.TlsProperty.Builder
ofCfnCluster.TlsProperty
-