64 releases (20 stable)

new 1.21.0 Mar 28, 2024
1.17.0 Feb 29, 2024
1.10.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 7, 2021

#1455 in Network programming

Download history 1638/week @ 2023-12-07 1019/week @ 2023-12-14 900/week @ 2023-12-21 813/week @ 2023-12-28 2004/week @ 2024-01-04 2808/week @ 2024-01-11 1576/week @ 2024-01-18 1538/week @ 2024-01-25 1800/week @ 2024-02-01 1717/week @ 2024-02-08 2455/week @ 2024-02-15 2796/week @ 2024-02-22 2546/week @ 2024-02-29 1380/week @ 2024-03-07 3125/week @ 2024-03-14 1231/week @ 2024-03-21

8,968 downloads per month
Used in 15 crates (5 directly)

Apache-2.0

4.5MB
67K SLoC

aws-sdk-eks

Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to setup or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications.

Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.

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

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

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

use aws_sdk_eks as eks;

#[::tokio::main]
async fn main() -> Result<(), eks::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_eks::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
~255K SLoC