54 stable releases

new 1.53.0 Dec 4, 2024
1.52.0 Nov 20, 2024
1.50.0 Oct 31, 2024
1.37.0 Jul 22, 2024
0.0.0 May 8, 2021

#1807 in Network programming

Download history 289/week @ 2024-08-17 262/week @ 2024-08-24 278/week @ 2024-08-31 245/week @ 2024-09-07 248/week @ 2024-09-14 153/week @ 2024-09-21 215/week @ 2024-09-28 365/week @ 2024-10-05 92/week @ 2024-10-12 247/week @ 2024-10-19 184/week @ 2024-10-26 251/week @ 2024-11-02 64/week @ 2024-11-09 232/week @ 2024-11-16 111/week @ 2024-11-23 223/week @ 2024-11-30

678 downloads per month

Apache-2.0

1.5MB
24K SLoC

aws-sdk-timestreamquery

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

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

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

use aws_sdk_timestreamquery as timestreamquery;

#[::tokio::main]
async fn main() -> Result<(), timestreamquery::Error> {
    let config = aws_config::load_from_env().await;
    // You MUST call `with_endpoint_discovery_enabled` to produce a working client for this service.
    let client = aws_sdk_timestreamquery::Client::new(&config).with_endpoint_discovery_enabled().await;

    // ... 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
~287K SLoC