74 releases (28 stable)

new 1.29.0 Mar 26, 2024
1.23.0 Feb 27, 2024
1.12.0 Dec 21, 2023
1.4.0 Nov 28, 2023
0.0.0 May 8, 2021

#2496 in Network programming

Download history 6/week @ 2023-12-07 5/week @ 2023-12-28 7/week @ 2024-01-04 21/week @ 2024-01-11 18/week @ 2024-01-18 11/week @ 2024-01-25 3/week @ 2024-02-08 140/week @ 2024-02-15 263/week @ 2024-02-22 56/week @ 2024-02-29 154/week @ 2024-03-07 450/week @ 2024-03-14 114/week @ 2024-03-21

821 downloads per month

Apache-2.0

18MB
267K SLoC

aws-sdk-connect

Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.

Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.

There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.

You can connect programmatically to an Amazon Web Services service by using an endpoint. For a list of Amazon Connect endpoints, see Amazon Connect Endpoints.

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

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

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

use aws_sdk_connect as connect;

#[::tokio::main]
async fn main() -> Result<(), connect::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_connect::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

~7–19MB
~257K SLoC