71 releases (27 stable)

new 1.26.0 Apr 22, 2024
1.22.0 Mar 26, 2024
1.10.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 8, 2021

#57 in Network programming

Download history 6138/week @ 2024-01-01 7421/week @ 2024-01-08 5497/week @ 2024-01-15 6754/week @ 2024-01-22 7532/week @ 2024-01-29 5906/week @ 2024-02-05 5969/week @ 2024-02-12 6179/week @ 2024-02-19 5628/week @ 2024-02-26 8188/week @ 2024-03-04 6520/week @ 2024-03-11 7722/week @ 2024-03-18 7573/week @ 2024-03-25 7454/week @ 2024-04-01 6775/week @ 2024-04-08 7011/week @ 2024-04-15

28,904 downloads per month
Used in 12 crates (11 directly)

Apache-2.0

7.5MB
98K SLoC

aws-sdk-cloudformation

CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.

With CloudFormation, you declare all your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.

For more information about CloudFormation, see the CloudFormation product page.

CloudFormation makes use of other Amazon Web Services products. If you need additional technical information about a specific Amazon Web Services product, you can find the product's technical documentation at docs.aws.amazon.com.

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

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

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

use aws_sdk_cloudformation as cloudformation;

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