aws-cdk-lib.aws_dynamodb.CfnGlobalTable.ReplicaSSESpecificationProperty

interface ReplicaSSESpecificationProperty

LanguageType name
.NETAmazon.CDK.AWS.DynamoDB.CfnGlobalTable.ReplicaSSESpecificationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_ReplicaSSESpecificationProperty
Javasoftware.amazon.awscdk.services.dynamodb.CfnGlobalTable.ReplicaSSESpecificationProperty
Pythonaws_cdk.aws_dynamodb.CfnGlobalTable.ReplicaSSESpecificationProperty
TypeScript aws-cdk-lib » aws_dynamodb » CfnGlobalTable » ReplicaSSESpecificationProperty

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 { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const replicaSSESpecificationProperty: dynamodb.CfnGlobalTable.ReplicaSSESpecificationProperty = {
  kmsMasterKeyId: 'kmsMasterKeyId',
};

Properties

NameTypeDescription
kmsMasterKeyIdstringThe AWS KMS key that should be used for the AWS KMS encryption.

kmsMasterKeyId

Type: string

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 .