/** *
The description of the server-side encryption status on the specified table.
*/ export interface _SSEDescription { /** *The current state of server-side encryption:
ENABLING - Server-side encryption is being enabled.
ENABLED - Server-side encryption is enabled.
DISABLING - Server-side encryption is being disabled.
DISABLED - Server-side encryption is disabled.
UPDATING - Server-side encryption is being updated.
Server-side encryption type:
AES256 - Server-side encryption which uses the AES256 algorithm.
KMS - Server-side encryption which uses AWS Key Management Service.
The KMS master key ARN used for the KMS encryption.
*/ KMSMasterKeyArn?: string; } export declare type _UnmarshalledSSEDescription = _SSEDescription;