Interface CfnCluster.EncryptionDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.EncryptionDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.EncryptionDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Configuration details about encryption for the cluster including the AWS KMS 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.services.dsql.*; EncryptionDetailsProperty encryptionDetailsProperty = EncryptionDetailsProperty.builder() .encryptionStatus("encryptionStatus") .encryptionType("encryptionType") .kmsKeyArn("kmsKeyArn") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.EncryptionDetailsProperty
static final class
An implementation forCfnCluster.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 KMS key that encrypts data in the cluster.- See Also:
-
builder
-