Values.AttributeDefinitionSourceRepresents an attribute for describing the schema for the table and indexes.
type nonrec t = {attributeName : KeySchemaAttributeName.t;A name for the attribute.
*)attributeType : ScalarAttributeType.t;The data type for the attribute, where: S - the attribute is of type String N - the attribute is of type Number B - the attribute is of type Binary
*)}val make :
attributeName:KeySchemaAttributeName.t ->
attributeType:ScalarAttributeType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of KeySchemaAttributeName.t ])
list ]