Skip to content

Commit 9a39d00

Browse files
author
Ryan Miville
committed
update readme
1 parent c275331 commit 9a39d00

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ An AWS request builder for Gleam, generated using [aws_codegen](https://github.c
88
```sh
99
gleam add aws_request
1010
```
11+
1112
```gleam
12-
import aws_request/config
1313
import aws_request/service/dynamodb
1414
import gleam/bit_array
1515
import gleam/httpc
16-
import gleam/result
1716
1817
pub fn main() {
1918
// create a client for the AWS service, such as DynamoDB
@@ -61,9 +60,17 @@ Ok(Response(
6160
),
6261
#("x-amz-crc32", "3152510195"),
6362
],
64-
"{"Item":{"name":{"S":"Ryan"}}}",
63+
"{\"Item\":{\"name\":{\"S\":\"Ryan\"}}}",
6564
))
6665
```
6766

6867
## Project Goals
69-
`aws_request` is NOT an AWS SDK for Gleam. It intends to be a base for idiomatic Gleam AWS SDKs.
68+
69+
`aws_request` is NOT an AWS SDK for Gleam. It intends to be a base for idiomatic SDKs.
70+
71+
## Missing features
72+
73+
- [ ] other AWS partitions (gov, cn, etc.)
74+
- [ ] fips and dualstack endpoints
75+
- [ ] docs
76+
- [ ] tests

0 commit comments

Comments
 (0)