@Stability(value=Stable)
public static interface CfnGlobalTable.ReplicaSSESpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGlobalTable.ReplicaSSESpecificationProperty.Builder
A builder for
CfnGlobalTable.ReplicaSSESpecificationProperty |
static class |
CfnGlobalTable.ReplicaSSESpecificationProperty.Jsii$Proxy
An implementation for
CfnGlobalTable.ReplicaSSESpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGlobalTable.ReplicaSSESpecificationProperty.Builder |
builder() |
String |
getKmsMasterKeyId()
The AWS KMS key that should be used for the AWS KMS encryption.
|
@Stability(value=Stable) @NotNull String getKmsMasterKeyId()
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 .
@Stability(value=Stable) static CfnGlobalTable.ReplicaSSESpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.