67 releases (23 stable)

new 1.23.0 Apr 22, 2024
1.20.0 Mar 27, 2024
1.10.0 Dec 21, 2023
1.4.0 Nov 28, 2023
0.0.0 May 8, 2021

#2239 in Network programming

Download history 169/week @ 2023-12-31 450/week @ 2024-01-07 216/week @ 2024-01-14 363/week @ 2024-01-21 301/week @ 2024-01-28 682/week @ 2024-02-04 324/week @ 2024-02-11 1490/week @ 2024-02-18 2066/week @ 2024-02-25 1001/week @ 2024-03-03 1530/week @ 2024-03-10 1200/week @ 2024-03-17 1003/week @ 2024-03-24 1126/week @ 2024-03-31 1253/week @ 2024-04-07 696/week @ 2024-04-14

4,100 downloads per month
Used in aws-sg-cleanup

Apache-2.0

7.5MB
106K SLoC

aws-sdk-elasticache

Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.

With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.

In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.

Getting Started

Examples are available for many services and operations, check out the examples folder in GitHub.

The SDK provides one crate per AWS service. You must add Tokio as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-elasticache to your project, add the following to your Cargo.toml file:

[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-elasticache = "1.23.0"
tokio = { version = "1", features = ["full"] }

Then in code, a client can be created with the following:

use aws_sdk_elasticache as elasticache;

#[::tokio::main]
async fn main() -> Result<(), elasticache::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_elasticache::Client::new(&config);

    // ... make some calls with the client

    Ok(())
}

See the client documentation for information on what calls can be made, and the inputs and outputs for each of those calls.

Using the SDK

Until the SDK is released, we will be adding information about using the SDK to the Developer Guide. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do.

Getting Help

License

This project is licensed under the Apache-2.0 License.

Dependencies

~8–21MB
~279K SLoC