Interface CfnClusterPropsMixin.EncryptionDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.EncryptionDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.EncryptionDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Configuration details about encryption for the cluster including the AWS key ARN, encryption type, and encryption status.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.dsql.mixins.*;
EncryptionDetailsProperty encryptionDetailsProperty = EncryptionDetailsProperty.builder()
.encryptionStatus("encryptionStatus")
.encryptionType("encryptionType")
.kmsKeyArn("kmsKeyArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.EncryptionDetailsPropertystatic final classAn implementation forCfnClusterPropsMixin.EncryptionDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionStatus
The status of encryption for the cluster.- See Also:
-
getEncryptionType
The type of encryption that protects the data on your cluster.- See Also:
-
getKmsKeyArn
The ARN of the AWS key that encrypts data in the cluster.- See Also:
-
builder
-