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 0f1b3c5 commit 4ec22dbCopy full SHA for 4ec22db
README.md
@@ -21,11 +21,17 @@ tokio = { version = "1", features = ["full"] }
21
3. Provide your AWS credentials as environment variables:
22
> **Note:** The alpha SDK only supports environment variable credential providers at this time.
23
24
+**Linux/MacOS**
25
```bash
26
export AWS_ACCESS_KEY_ID=...
27
export AWS_SECRET_ACCESS_KEY=...
28
export AWS_DEFAULT_REGION=... # eg. us-east-1
29
```
30
+**Windows**
31
+```set AWS_ACCESS_KEY_ID=...
32
+set AWS_SECRET_ACCESS_KEY=...
33
+set AWS_DEFAULT_REGION=...
34
+```
35
36
4. Make a request using DynamoDB
37
0 commit comments