@Stability(value=Stable)
public static interface CfnCluster.EncryptionInfoProperty
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.*;
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 Object |
getEncryptionAtRest()
The data-volume encryption details.
|
default Object |
getEncryptionInTransit()
The details for encryption in transit.
|
@Stability(value=Stable) @Nullable default Object getEncryptionAtRest()
@Stability(value=Stable) @Nullable default Object getEncryptionInTransit()
@Stability(value=Stable) static CfnCluster.EncryptionInfoProperty.Builder builder()
Copyright © 2022. All rights reserved.