/** *

Represents the settings used to enable server-side encryption.

*/ export interface _SSESpecification { /** *

Indicates whether server-side encryption is enabled (true) or disabled (false) on the table.

*/ Enabled?: boolean; /** *

Server-side encryption type:

*/ SSEType?: 'AES256' | 'KMS' | string; /** *

The KMS Master Key (CMK) which should be used for the KMS encryption. To specify a CMK, 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 KMS Master Key alias/aws/dynamodb.

*/ KMSMasterKeyId?: string; } export declare type _UnmarshalledSSESpecification = _SSESpecification;