/** *

Represents the DynamoDB Streams configuration for a table in DynamoDB.

*/ export interface _StreamSpecification { /** *

Indicates whether DynamoDB Streams is enabled (true) or disabled (false) on the table.

*/ StreamEnabled?: boolean; /** *

When an item in the table is modified, StreamViewType determines what information is written to the stream for this table. Valid values for StreamViewType are:

*/ StreamViewType?: 'NEW_IMAGE' | 'OLD_IMAGE' | 'NEW_AND_OLD_IMAGES' | 'KEYS_ONLY' | string; } export declare type _UnmarshalledStreamSpecification = _StreamSpecification;