aws_sdk_codedeploy/
lib.rs

1#![allow(deprecated)]
2#![allow(unknown_lints)]
3#![allow(clippy::module_inception)]
4#![allow(clippy::upper_case_acronyms)]
5#![allow(clippy::large_enum_variant)]
6#![allow(clippy::wrong_self_convention)]
7#![allow(clippy::should_implement_trait)]
8#![allow(clippy::disallowed_names)]
9#![allow(clippy::vec_init_then_push)]
10#![allow(clippy::type_complexity)]
11#![allow(clippy::needless_return)]
12#![allow(clippy::derive_partial_eq_without_eq)]
13#![allow(clippy::result_large_err)]
14#![allow(clippy::unnecessary_map_on_constructor)]
15#![allow(rustdoc::bare_urls)]
16#![allow(rustdoc::redundant_explicit_links)]
17#![allow(rustdoc::invalid_html_tags)]
18#![forbid(unsafe_code)]
19#![warn(missing_docs)]
20#![cfg_attr(docsrs, feature(doc_auto_cfg))]
21//! CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless Lambda functions, or applications in an Amazon ECS service.
22//!
23//! You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use CodeDeploy.
24//!
25//! CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, without many of the risks associated with error-prone manual deployments.
26//!
27//! __CodeDeploy Components__
28//!
29//! Use the information in this guide to help you work with the following CodeDeploy components:
30//!   - __Application__: A name that uniquely identifies the application you want to deploy. CodeDeploy uses this name, which functions as a container, to ensure the correct combination of revision, deployment configuration, and deployment group are referenced during a deployment.
31//!   - __Deployment group__: A set of individual instances, CodeDeploy Lambda deployment configuration settings, or an Amazon ECS service and network details. A Lambda deployment group specifies how to route traffic to a new version of a Lambda function. An Amazon ECS deployment group specifies the service created in Amazon ECS to deploy, a load balancer, and a listener to reroute production traffic to an updated containerized application. An Amazon EC2/On-premises deployment group contains individually tagged instances, Amazon EC2 instances in Amazon EC2 Auto Scaling groups, or both. All deployment groups can specify optional trigger, alarm, and rollback settings.
32//!   - __Deployment configuration__: A set of deployment rules and deployment success and failure conditions used by CodeDeploy during a deployment.
33//!   - __Deployment__: The process and the components used when updating a Lambda function, a containerized application in an Amazon ECS service, or of installing content on one or more instances.
34//!   - __Application revisions__: For an Lambda deployment, this is an AppSpec file that specifies the Lambda function to be updated and one or more functions to validate deployment lifecycle events. For an Amazon ECS deployment, this is an AppSpec file that specifies the Amazon ECS task definition, container, and port where production traffic is rerouted. For an EC2/On-premises deployment, this is an archive file that contains source content—source code, webpages, executable files, and deployment scripts—along with an AppSpec file. Revisions are stored in Amazon S3 buckets or GitHub repositories. For Amazon S3, a revision is uniquely identified by its Amazon S3 object key and its ETag, version, or both. For GitHub, a revision is uniquely identified by its commit ID.
35//!
36//! This guide also contains information to help you get details about the instances in your deployments, to make on-premises instances available for CodeDeploy deployments, to get details about a Lambda function deployment, and to get details about Amazon ECS service deployments.
37//!
38//! __CodeDeploy Information Resources__
39//!   - [CodeDeploy User Guide](https://docs.aws.amazon.com/codedeploy/latest/userguide)
40//!   - [CodeDeploy API Reference Guide](https://docs.aws.amazon.com/codedeploy/latest/APIReference/)
41//!   - [CLI Reference for CodeDeploy](https://docs.aws.amazon.com/cli/latest/reference/deploy/index.html)
42//!   - [CodeDeploy Developer Forum](https://forums.aws.amazon.com/forum.jspa?forumID=179)
43//!
44//! ## Getting Started
45//!
46//! > Examples are available for many services and operations, check out the
47//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
48//!
49//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
50//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-codedeploy` to
51//! your project, add the following to your **Cargo.toml** file:
52//!
53//! ```toml
54//! [dependencies]
55//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
56//! aws-sdk-codedeploy = "1.75.0"
57//! tokio = { version = "1", features = ["full"] }
58//! ```
59//!
60//! Then in code, a client can be created with the following:
61//!
62//! ```rust,no_run
63//! use aws_sdk_codedeploy as codedeploy;
64//!
65//! #[::tokio::main]
66//! async fn main() -> Result<(), codedeploy::Error> {
67//!     let config = aws_config::load_from_env().await;
68//!     let client = aws_sdk_codedeploy::Client::new(&config);
69//!
70//!     // ... make some calls with the client
71//!
72//!     Ok(())
73//! }
74//! ```
75//!
76//! See the [client documentation](https://docs.rs/aws-sdk-codedeploy/latest/aws_sdk_codedeploy/client/struct.Client.html)
77//! for information on what calls can be made, and the inputs and outputs for each of those calls.
78//!
79//! ## Using the SDK
80//!
81//! Until the SDK is released, we will be adding information about using the SDK to the
82//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
83//! additional sections for the guide by opening an issue and describing what you are trying to do.
84//!
85//! ## Getting Help
86//!
87//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
88//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
89//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
90//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
91//!
92//!
93//! # Crate Organization
94//!
95//! The entry point for most customers will be [`Client`], which exposes one method for each API
96//! offered by AWS CodeDeploy. The return value of each of these methods is a "fluent builder",
97//! where the different inputs for that API are added by builder-style function call chaining,
98//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
99//! either a successful output or a [`SdkError`](crate::error::SdkError).
100//!
101//! Some of these API inputs may be structs or enums to provide more complex structured information.
102//! These structs and enums live in [`types`](crate::types). There are some simpler types for
103//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
104//!
105//! All types required to configure a client via the [`Config`](crate::Config) struct live
106//! in [`config`](crate::config).
107//!
108//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
109//! is the input, output, and error type for that API, as well as builders to construct each of those.
110//!
111//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
112//! client can return. Any other error type can be converted to this `Error` type via the
113//! [`From`](std::convert::From) trait.
114//!
115//! The other modules within this crate are not required for normal usage.
116
117// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
118pub use error_meta::Error;
119
120#[doc(inline)]
121pub use config::Config;
122
123/// Client for calling AWS CodeDeploy.
124/// ## Constructing a `Client`
125///
126/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
127/// crate should be used to automatically resolve this config using
128/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
129/// across multiple different AWS SDK clients. This config resolution process can be customized
130/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
131/// the [builder pattern] to customize the default config.
132///
133/// In the simplest case, creating a client looks as follows:
134/// ```rust,no_run
135/// # async fn wrapper() {
136/// let config = aws_config::load_from_env().await;
137/// let client = aws_sdk_codedeploy::Client::new(&config);
138/// # }
139/// ```
140///
141/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
142/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
143/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
144/// done as follows:
145///
146/// ```rust,no_run
147/// # async fn wrapper() {
148/// let sdk_config = ::aws_config::load_from_env().await;
149/// let config = aws_sdk_codedeploy::config::Builder::from(&sdk_config)
150/// # /*
151///     .some_service_specific_setting("value")
152/// # */
153///     .build();
154/// # }
155/// ```
156///
157/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
158///
159/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
160/// be done once at application start-up.
161///
162/// [`Config`]: crate::Config
163/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
164/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
165/// [`aws-config` docs]: https://docs.rs/aws-config/*
166/// [`aws-config`]: https://crates.io/crates/aws-config
167/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
168/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
169/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
170/// # Using the `Client`
171///
172/// A client has a function for every operation that can be performed by the service.
173/// For example, the [`BatchGetApplicationRevisions`](crate::operation::batch_get_application_revisions) operation has
174/// a [`Client::batch_get_application_revisions`], function which returns a builder for that operation.
175/// The fluent builder ultimately has a `send()` function that returns an async future that
176/// returns a result, as illustrated below:
177///
178/// ```rust,ignore
179/// let result = client.batch_get_application_revisions()
180///     .application_name("example")
181///     .send()
182///     .await;
183/// ```
184///
185/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
186/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
187/// information.
188/// # Waiters
189///
190/// This client provides `wait_until` methods behind the [`Waiters`](crate::client::Waiters) trait.
191/// To use them, simply import the trait, and then call one of the `wait_until` methods. This will
192/// return a waiter fluent builder that takes various parameters, which are documented on the builder
193/// type. Once parameters have been provided, the `wait` method can be called to initiate waiting.
194///
195/// For example, if there was a `wait_until_thing` method, it could look like:
196/// ```rust,ignore
197/// let result = client.wait_until_thing()
198///     .thing_id("someId")
199///     .wait(Duration::from_secs(120))
200///     .await;
201/// ```
202pub mod client;
203
204/// Configuration for AWS CodeDeploy.
205pub mod config;
206
207/// Common errors and error handling utilities.
208pub mod error;
209
210mod error_meta;
211
212/// Information about this crate.
213pub mod meta;
214
215/// All operations that this crate can perform.
216pub mod operation;
217
218/// Primitives such as `Blob` or `DateTime` used by other types.
219pub mod primitives;
220
221/// Data structures used by operation inputs/outputs.
222pub mod types;
223
224mod auth_plugin;
225
226pub(crate) mod protocol_serde;
227
228mod sdk_feature_tracker;
229
230mod serialization_settings;
231
232mod endpoint_lib;
233
234mod lens;
235
236/// Supporting types for waiters.
237///
238/// Note: to use waiters, import the [`Waiters`](crate::client::Waiters) trait, which adds methods prefixed with `wait_until` to the client.
239pub mod waiters;
240
241mod json_errors;
242
243#[doc(inline)]
244pub use client::Client;