/** *

Represents an attribute for describing the key schema for the table and indexes.

*/ export interface _AttributeDefinition { /** *

A name for the attribute.

*/ AttributeName: string; /** *

The data type for the attribute, where:

*/ AttributeType: 'S' | 'N' | 'B' | string; } export declare type _UnmarshalledAttributeDefinition = _AttributeDefinition;