Module path

Source
Expand description

Types related to DynamoDB document paths. For more, see Path.

Structs§

IndexedField
Represents a type of Element of a DynamoDB document Path that is a Name with one or more indexes. For example, in foo[3][7].bar[2].baz, the elements foo[3][7] and bar[2] would both be represented as an IndexedField.
Name
Represents a DynamoDB attribute name. This will most commonly be used for top-level attributes.
Path
Represents a DynamoDB document path. For example, foo[3][7].bar[2].baz.
PathParseError
A Path (or Element of a path) failed to parse.

Enums§

Element
Represents a single element of a DynamoDB document Path. For example, in foo[3][7].bar[2].baz, the Elements would be foo[3][7], bar[2], and baz.

Traits§

Indexes
Used for IndexedField. An array, slice, Vec of, or single usize.