Expand description
Types related to DynamoDB document paths. For more, see Path
.
Structs§
- Indexed
Field - Represents a type of
Element
of a DynamoDB documentPath
that is aName
with one or more indexes. For example, infoo[3][7].bar[2].baz
, the elementsfoo[3][7]
andbar[2]
would both be represented as anIndexedField
. - 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
. - Path
Parse Error - A
Path
(orElement
of a path) failed to parse.
Enums§
- Element
- Represents a single element of a DynamoDB document
Path
. For example, infoo[3][7].bar[2].baz
, theElement
s would befoo[3][7]
,bar[2]
, andbaz
.
Traits§
- Indexes
- Used for
IndexedField
. An array, slice,Vec
of, or singleusize
.