63 releases (19 stable)

new 1.20.0 Apr 12, 2024
1.18.0 Mar 26, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 8, 2021

#2384 in Network programming

Download history 118/week @ 2023-12-23 361/week @ 2023-12-30 692/week @ 2024-01-06 397/week @ 2024-01-13 239/week @ 2024-01-20 221/week @ 2024-01-27 140/week @ 2024-02-03 271/week @ 2024-02-10 482/week @ 2024-02-17 808/week @ 2024-02-24 556/week @ 2024-03-02 579/week @ 2024-03-09 743/week @ 2024-03-16 453/week @ 2024-03-23 749/week @ 2024-03-30 585/week @ 2024-04-06

2,665 downloads per month
Used in 2 crates

Apache-2.0

600KB
9K SLoC

aws-sdk-dynamodbstreams

Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see Capturing Table Activity with DynamoDB Streams in the Amazon DynamoDB Developer Guide.

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-dynamodbstreams to your project, add the following to your Cargo.toml file:

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

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

use aws_sdk_dynamodbstreams as dynamodbstreams;

#[::tokio::main]
async fn main() -> Result<(), dynamodbstreams::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_dynamodbstreams::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–20MB
~270K SLoC