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.
1 parent bea0c50 commit 5f52d75Copy full SHA for 5f52d75
README.md
@@ -36,12 +36,20 @@ The ability to return a stream is noticed in the function's documentation.
36
37
### Migration
38
39
+TL;DR:
40
+Do this now:
41
+```
42
+ExAws.S3.get_object("my-bucket", "path/to/object") |> ExAws.request
43
44
+not
45
46
+ExAws.S3.get_object("my-bucket", "path/to/object")
47
48
+
49
This change greatly simplifies the ExAws code paths, and removes entirely the complex
50
meta-programming pervasive to the original approach. However, it does constitute
51
a breaking change for anyone who had a client with custom logic.
52
-
53
## Highlighted Features
54
- Easy configuration.
55
- Minimal dependencies. Choose your favorite JSON codec and HTTP client.
0 commit comments