public static interface CfnCluster.EncryptionInTransitProperty
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 java.lang.String |
getClientBroker()
Indicates the encryption setting for data in transit between clients and brokers.
|
default java.lang.Object |
getInCluster()
When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted.
|
default java.lang.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
.
default java.lang.Object getInCluster()
When set to false, the communication happens in plain text. The default value is true.
static CfnCluster.EncryptionInTransitProperty.Builder builder()