/** *

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

*/ export interface _SSEDescription { /** *

The current state of server-side encryption:

*/ Status?: 'ENABLING' | 'ENABLED' | 'DISABLING' | 'DISABLED' | 'UPDATING' | string; /** *

Server-side encryption type:

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

The KMS master key ARN used for the KMS encryption.

*/ KMSMasterKeyArn?: string; } export declare type _UnmarshalledSSEDescription = _SSEDescription;