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: rust_dev_preview/README.md
+8
Original file line number
Diff line number
Diff line change
@@ -54,15 +54,23 @@ The following environment variables are specific to the AWS SDK for Rust.
54
54
55
55
You must have an AWS account, and have configured your default credentials and AWS Region as described in [Getting started with the AWS SDK for Rust](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/getting-started.html).
56
56
57
+
You must have the [Cargo](https://doc.rust-lang.org/cargo/) build tool, which is typically installed via [rustup](https://rustup.rs/).
58
+
59
+
Each example has one or more examples that can be executed with `cargo run --bin [program name]`.
57
60
See the individual readme files in each service directory for information about specific code examples for that service.
58
61
62
+
Unit tests for each example can be run with `cargo test`, and these will not cause any changes or charges to your AWS account.
63
+
Integration tests may cause changes or charges to your AWS account, and are described individually for each example.
64
+
However, they can be run with `cargo test -- --ignored`.
65
+
59
66
## Resources
60
67
61
68
-[AWS SDK for Rust repo](https://github.com/awslabs/aws-sdk-rust)
62
69
-[AWS SDK for Rust API Reference](https://docs.rs/releases/search?query=aws-sdk-)
63
70
-[AWS SDK for Rust Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg)
64
71
65
72
## Docker image (Beta)
73
+
66
74
This example code will soon be available in a container image
67
75
hosted on [Amazon Elastic Container Registry (ECR)](https://docs.aws.amazon.com/AmazonECR/latest/userguide/what-is-ecr.html). This image will be pre-loaded
68
76
with all Rust examples with dependencies pre-resolved, allowing you to explore
0 commit comments