Show / Hide Table of Contents

Class CfnGlobalTable.SSESpecificationProperty

Represents the settings used to enable server-side encryption.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-ssespecification.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 sSESpecificationProperty = new SSESpecificationProperty {
    SseEnabled = false,

    // the properties below are optional
    SseType = "sseType"
};

Synopsis

Constructors

SSESpecificationProperty()

Properties

SseEnabled

Indicates whether server-side encryption is performed using an AWS managed key or an AWS owned key.

SseType

Server-side encryption type. The only supported value is:.

Constructors

SSESpecificationProperty()

public SSESpecificationProperty()

Properties

SseEnabled

Indicates whether server-side encryption is performed using an AWS managed key or an AWS owned key.

public object SseEnabled { get; set; }
Property Value

System.Object

Remarks

If enabled (true), server-side encryption type is set to KMS and an AWS managed key is used ( AWS KMS charges apply). If disabled (false) or not specified,server-side encryption is set to an AWS owned key. If you choose to use KMS encryption, you can also use customer managed KMS keys by specifying them in the ReplicaSpecification.SSESpecification object. You cannot mix AWS managed and customer managed KMS keys.

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

SseType

Server-side encryption type. The only supported value is:.

public string SseType { get; set; }
Property Value

System.String

Remarks

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

    Implements

    CfnGlobalTable.ISSESpecificationProperty
    Back to top Generated by DocFX