Interface CfnTable.EncryptionSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.EncryptionSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnTable
@Stability(Stable)
public static interface CfnTable.EncryptionSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the encryption at rest option selected for the table.
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.cassandra.*;
EncryptionSpecificationProperty encryptionSpecificationProperty = EncryptionSpecificationProperty.builder()
.encryptionType("encryptionType")
// the properties below are optional
.kmsKeyIdentifier("kmsKeyIdentifier")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.EncryptionSpecificationPropertystatic final classAn implementation forCfnTable.EncryptionSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionType
The encryption at rest options for the table.- AWS owned key (default) -
AWS_OWNED_KMS_KEY - Customer managed key -
CUSTOMER_MANAGED_KMS_KEY
If you choose
CUSTOMER_MANAGED_KMS_KEY, akms_key_identifierin the format of a key ARN is required.Valid values:
CUSTOMER_MANAGED_KMS_KEY|AWS_OWNED_KMS_KEY. - AWS owned key (default) -
-
getKmsKeyIdentifier
Requires akms_key_identifierin the format of a key ARN. -
builder
-