Expand description
Types related to DynamoDB document paths. For more, see Path.
Structs§
- Indexed
Field - Represents a type of
Elementof a DynamoDB documentPaththat is aNamewith 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(orElementof a path) failed to parse.
Enums§
- Element
- Represents a single element of a DynamoDB document
Path. For example, infoo[3][7].bar[2].baz, theElements would befoo[3][7],bar[2], andbaz.
Traits§
- Indexes
- Used for
IndexedField. An array, slice,Vecof, or singleusize.