@Stability(value=Stable)
public static interface CfnCluster.EncryptionInTransitProperty
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.*;
EncryptionInTransitProperty encryptionInTransitProperty = EncryptionInTransitProperty.builder()
.clientBroker("clientBroker")
.inCluster(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.EncryptionInTransitProperty.Builder
A builder for
CfnCluster.EncryptionInTransitProperty |
static class |
CfnCluster.EncryptionInTransitProperty.Jsii$Proxy
An implementation for
CfnCluster.EncryptionInTransitProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.EncryptionInTransitProperty.Builder |
builder() |
default String |
getClientBroker()
Indicates the encryption setting for data in transit between clients and brokers.
|
default Object |
getInCluster()
When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted.
|
@Stability(value=Stable) @Nullable default String getClientBroker()
TLS means that client-broker communication is enabled with TLS only.TLS_PLAINTEXT means that client-broker communication is enabled for both TLS-encrypted, as well as plain text data.PLAINTEXT means that client-broker communication is enabled in plain text only.
The default value is TLS .
@Stability(value=Stable) @Nullable default Object getInCluster()
When set to false, the communication happens in plain text. The default value is true.
@Stability(value=Stable) static CfnCluster.EncryptionInTransitProperty.Builder builder()
Copyright © 2022. All rights reserved.