public static interface CfnCluster.EncryptionInfoProperty
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.*; EncryptionInfoProperty encryptionInfoProperty = EncryptionInfoProperty.builder() .encryptionAtRest(EncryptionAtRestProperty.builder() .dataVolumeKmsKeyId("dataVolumeKmsKeyId") .build()) .encryptionInTransit(EncryptionInTransitProperty.builder() .clientBroker("clientBroker") .inCluster(false) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCluster.EncryptionInfoProperty.Builder
A builder for
CfnCluster.EncryptionInfoProperty |
static class |
CfnCluster.EncryptionInfoProperty.Jsii$Proxy
An implementation for
CfnCluster.EncryptionInfoProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCluster.EncryptionInfoProperty.Builder |
builder() |
default java.lang.Object |
getEncryptionAtRest()
The data-volume encryption details.
|
default java.lang.Object |
getEncryptionInTransit()
The details for encryption in transit.
|
default java.lang.Object getEncryptionAtRest()
default java.lang.Object getEncryptionInTransit()
static CfnCluster.EncryptionInfoProperty.Builder builder()