Interface CfnGlobalTablePropsMixin.ReplicaSSESpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGlobalTablePropsMixin.ReplicaSSESpecificationProperty.Jsii$Proxy
Enclosing class:
CfnGlobalTablePropsMixin

@Stability(Stable) public static interface CfnGlobalTablePropsMixin.ReplicaSSESpecificationProperty extends software.amazon.jsii.JsiiSerializable
Allows you to specify a KMS key identifier to be used for server-side encryption.

The key can be specified via ARN, key ID, or alias. The key must be created in the same region as the replica.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.dynamodb.*;
 ReplicaSSESpecificationProperty replicaSSESpecificationProperty = ReplicaSSESpecificationProperty.builder()
         .kmsMasterKeyId("kmsMasterKeyId")
         .build();
 

See Also: