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 7, 2021

#2410 in Network programming

Download history 5/week @ 2023-12-21 11/week @ 2024-01-04 134/week @ 2024-01-11 23/week @ 2024-01-18 8/week @ 2024-01-25 26/week @ 2024-02-08 118/week @ 2024-02-15 265/week @ 2024-02-22 80/week @ 2024-02-29 56/week @ 2024-03-07 175/week @ 2024-03-14 79/week @ 2024-03-21 56/week @ 2024-03-28 108/week @ 2024-04-04

459 downloads per month
Used in ecs_helpers

Apache-2.0

2MB
28K SLoC

aws-sdk-ecrpublic

Amazon Elastic Container Registry Public (Amazon ECR Public) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the Docker CLI or your preferred client to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see Amazon Elastic Container Registry API Reference.

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

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

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

use aws_sdk_ecrpublic as ecrpublic;

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