Show / Hide Table of Contents

Class CfnGlobalTable.ReplicaSSESpecificationProperty

Allows you to specify a KMS key identifier to be used for server-side encryption.

Inheritance
System.Object
CfnGlobalTable.ReplicaSSESpecificationProperty
Implements
CfnGlobalTable.IReplicaSSESpecificationProperty
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.AWS.DynamoDB.dll
Syntax (csharp)
public class ReplicaSSESpecificationProperty : Object, CfnGlobalTable.IReplicaSSESpecificationProperty
Syntax (vb)
Public Class ReplicaSSESpecificationProperty
    Inherits Object
    Implements CfnGlobalTable.IReplicaSSESpecificationProperty
Remarks

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-replicassespecification.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DynamoDB;

var replicaSSESpecificationProperty = new ReplicaSSESpecificationProperty {
    KmsMasterKeyId = "kmsMasterKeyId"
};

Synopsis

Constructors

ReplicaSSESpecificationProperty()

Properties

KmsMasterKeyId

The AWS KMS key that should be used for the AWS KMS encryption.

Constructors

ReplicaSSESpecificationProperty()

public ReplicaSSESpecificationProperty()

Properties

KmsMasterKeyId

The AWS KMS key that should be used for the AWS KMS encryption.

public string KmsMasterKeyId { get; set; }
Property Value

System.String

Remarks

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-replicassespecification.html#cfn-dynamodb-globaltable-replicassespecification-kmsmasterkeyid

Implements

CfnGlobalTable.IReplicaSSESpecificationProperty
Back to top Generated by DocFX