We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
decode_item
1 parent 29493e0 commit a36d957Copy full SHA for a36d957
lib/ex_aws/dynamo.ex
@@ -123,14 +123,6 @@ defmodule ExAws.Dynamo do
123
|> ExAws.request!
124
|> Dynamo.decode_item(as: User)
125
```
126
-
127
- By default this will decode various dynamodb sets into lists. If you'd
128
- prefer they be decoded into `MapSet`s instead, set `decode_sets: true` in
129
- your compile-time (not runtime) configuration:
130
131
- ```elixir
132
- config :ex_aws, :dynamodb, decode_sets: true
133
- ```
134
"""
135
@spec decode_item(Map.t()) :: Map.t()
136
@spec decode_item(Map.t(), as: atom) :: Map.t()
0 commit comments