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.
2 parents 60bc022 + a845848 commit e727746Copy full SHA for e727746
README.md
@@ -21,11 +21,18 @@ 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
+```cmd
32
+set AWS_ACCESS_KEY_ID=...
33
+set AWS_SECRET_ACCESS_KEY=...
34
+set AWS_DEFAULT_REGION=... # eg. us-east-1
35
+```
36
37
4. Make a request using DynamoDB
38
0 commit comments