Package-level declarations
Types
A sentinel value for indicating that an ItemConverter should be automatically generated by dynamodb-mapper-schema-generator-plugin. This object cannot be used to convert items directly and will throw exceptions when calling convertLeft or convertRight.
Converts between Document and Item. The top-level document must be a Document.Map; nested values use the same element-level conversion as DocumentValueConverter.
An item converter which handles heterogeneous (i.e., incongruent) data types by way of a string discriminator attribute identified by typeAttribute. The given typeMapper function must return a string type name for an object which will be used for the typeAttribute attribute. Finally, the given subConverters map identifies the delegate converters for each type.
Defines the logic for converting between objects and DynamoDB items
Defines a schema for handling objects of type T, including an ItemConverter for converting between objects and items and a KeySpec for identifying primary keys.
Defines the specification for a single key attribute, including its name and type
Defines the specification for a partition or sort key, including the names and types of its attributes. Key specifications are an important component of item schemas since they describe how to interact with each key attribute and provide vital typing information for features which interact with DynamoDB operations like Query and Scan.
An item converter which uses attribute descriptors to convert objects to items and vice versa. This converter distinguishes between the object type used for conversion into an item (treated as immutable) and a mutable builder type used for conversion from an item. Note that these do not have to be different types if the object type is already mutable.
Identifies how to handle attributes whose keys aren't in an item schema when converting from an item to an entity type
Functions
Instantiates a new AttributeDescriptor
Create a new item schema with a primary key consisting of a single partition key.
Inherited functions
Instantiates a new KeyType that builds from a single attribute value into two values. Additional values may be added with one of the invoke extension function overloads.
Instantiates a new KeyType that builds from two attribute values into three values. Additional values may be added with one of the invoke extension function overloads.
Instantiates a new KeyType that builds from three attribute values into four values
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Instantiates a new KeySpec that builds from a single attribute into two attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from two attributes into three attributes. Additional attributes may be added with the extension methods thenInt, thenLong, thenString, etc.
Instantiates a new KeySpec that builds from three attributes into four attributes
Associate this ItemConverter with a KeySpec for a partition key to form a complete ItemSchema
Associate this ItemConverter with KeySpec instances for a composite key to form a complete ItemSchema