67 releases (23 stable)

new 1.24.0 Apr 24, 2024
1.19.0 Mar 26, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 7, 2021

#2353 in Network programming

Download history 11/week @ 2024-01-10 6/week @ 2024-01-17 6/week @ 2024-01-24 80/week @ 2024-02-14 272/week @ 2024-02-21 88/week @ 2024-02-28 6/week @ 2024-03-06 229/week @ 2024-03-13 162/week @ 2024-03-20 85/week @ 2024-03-27 243/week @ 2024-04-03 116/week @ 2024-04-10 45/week @ 2024-04-17

558 downloads per month

Apache-2.0

1.5MB
26K SLoC

aws-sdk-emrcontainers

Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see What is Amazon EMR on EKS.

Amazon EMR containers is the API name for Amazon EMR on EKS. The emr-containers prefix is used in the following scenarios:

  • It is the prefix in the CLI commands for Amazon EMR on EKS. For example, aws emr-containers start-job-run.
  • It is the prefix before IAM policy actions for Amazon EMR on EKS. For example, "Action": [ "emr-containers:StartJobRun"]. For more information, see Policy actions for Amazon EMR on EKS.
  • It is the prefix used in Amazon EMR on EKS service endpoints. For example, emr-containers.us-east-2.amazonaws.com. For more information, see Amazon EMR on EKSService 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-emrcontainers to your project, add the following to your Cargo.toml file:

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

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

use aws_sdk_emrcontainers as emrcontainers;

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