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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.EncryptionSpecificationProperty
static final class
An 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_identifier
in the format of a key ARN is required.Valid values:
CUSTOMER_MANAGED_KMS_KEY
|AWS_OWNED_KMS_KEY
.Default: - "AWS_OWNED_KMS_KEY"
- See Also:
- AWS owned key (default) -
-
getKmsKeyIdentifier
Requires akms_key_identifier
in the format of a key ARN.- See Also:
-
builder
-