Interface CfnGlobalTable.ReplicaSSESpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalTable.ReplicaSSESpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnGlobalTable
@Stability(Stable)
public static interface CfnGlobalTable.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.services.dynamodb.*; ReplicaSSESpecificationProperty replicaSSESpecificationProperty = ReplicaSSESpecificationProperty.builder() .kmsMasterKeyId("kmsMasterKeyId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGlobalTable.ReplicaSSESpecificationProperty
static final class
An implementation forCfnGlobalTable.ReplicaSSESpecificationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The AWS KMS key that should be used for the AWS KMS encryption.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsMasterKeyId
The AWS KMS key that should be used for the AWS KMS encryption.To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB key
alias/aws/dynamodb
.- See Also:
-
builder
-