You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@ The SDK is code generated from [Smithy models](https://awslabs.github.io/smithy/
8
8
9
9
## Getting Started with the SDK
10
10
11
+
> Examples are availble for many services and operations, check out the [examples folder](https://github.com/awslabs/aws-sdk-rust/tree/main/sdk/examples).
12
+
13
+
11
14
The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio) as a dependency within your Rust project to execute asynchronous code. We will not push the SDK to **crates.io** during Alpha; you must use it via a Git dependency.
12
15
13
16
1. Create a new Rust project: `cargo new sdk-example`
@@ -22,9 +25,10 @@ tokio = { version = "1", features = ["full"] }
22
25
23
26
3. Provide your AWS credentials with the default credential provider chain, which currently looks in:
24
27
- Environment variables: `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, and `AWS_REGION`
25
-
- Web Identity Token credentials from the environment or container
28
+
- Web Identity Token credentials from the environment or container (including EKS)
26
29
- The default credentials files located in `~/.aws/config` and `~/.aws/credentials` (location can vary per platform)
27
-
**Note:** SSO, ECS, IMDS, and EKS credential sources are not supported yet.
30
+
- EC2 Instance Metadata Service (IAM Roles attached to instance)
31
+
**Note:** SSO, and ECS credential sources are not supported yet.
0 commit comments