Table of Contents

Class SSEDescription

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

The description of the server-side encryption status on the specified table.

public class SSEDescription
Inheritance
SSEDescription
Inherited Members

Constructors

SSEDescription()

public SSEDescription()

Properties

InaccessibleEncryptionDateTime

Gets and sets the property InaccessibleEncryptionDateTime.

Indicates the time, in UNIX epoch date format, when DynamoDB detected that the table's KMS key was inaccessible. This attribute will automatically be cleared when DynamoDB detects that the table's KMS key is accessible again. DynamoDB will initiate the table archival process when table's KMS key remains inaccessible for more than seven days from this date.

public DateTime InaccessibleEncryptionDateTime { get; set; }

Property Value

DateTime

KMSMasterKeyArn

Gets and sets the property KMSMasterKeyArn.

The KMS key ARN used for the KMS encryption.

public string KMSMasterKeyArn { get; set; }

Property Value

string

SSEType

Gets and sets the property SSEType.

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

  • KMS
    - Server-side encryption that uses Key Management Service. The key is stored in your account and is managed by KMS (KMS charges apply).
public SSEType SSEType { get; set; }

Property Value

SSEType

Status

Gets and sets the property Status.

Represents the current state of server-side encryption. The only supported values are:

  • ENABLED
    - Server-side encryption is enabled.
  • UPDATING
    - Server-side encryption is being updated.
public SSEStatus Status { get; set; }

Property Value

SSEStatus