Interface CfnCluster.SSESpecificationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnCluster.SSESpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnCluster
@Stability(Stable)
public static interface CfnCluster.SSESpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Represents the settings used to enable server-side encryption.
 
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.dax.*;
 SSESpecificationProperty sSESpecificationProperty = SSESpecificationProperty.builder()
         .sseEnabled(false)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.SSESpecificationPropertystatic final classAn implementation forCfnCluster.SSESpecificationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getSseEnabledIndicates whether server-side encryption is enabled (true) or disabled (false) on the cluster.
- 
builder
 
-