aws_sdk_opsworkscm/
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//! The OpsWorks services have reached end of life and have been disabled for both new and existing customers. We strongly recommend customers migrate their workloads to other solutions as soon as possible. If you have questions about migration, reach out to the Amazon Web ServicesSupport Team on [Amazon Web Services re:Post](https://repost.aws/) or through [Amazon Web Services Premium Support](https://aws.amazon.com/support).
22//!
23//! OpsWorks CM is a service that runs and manages configuration management servers. You can use OpsWorks CM to create and manage OpsWorks for Chef Automate and OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.
24//!
25//! __Glossary of terms__
26//!   - __Server__: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other Amazon Web Services services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.
27//!   - __Engine__: The engine is the specific configuration manager that you want to use. Valid values in this release include ChefAutomate and Puppet.
28//!   - __Backup__: This is an application-level backup of the data that the configuration manager stores. OpsWorks CM creates an S3 bucket for backups when you launch the first server. A backup maintains a snapshot of a server's configuration-related attributes at the time the backup starts.
29//!   - __Events__: Events are always related to a server. Events are written during server creation, when health checks run, when backups are created, when system maintenance is performed, etc. When you delete a server, the server's events are also deleted.
30//!   - __Account attributes__: Every account has attributes that are assigned in the OpsWorks CM database. These attributes store information about configuration limits (servers, backups, etc.) and your customer account.
31//!
32//! __Endpoints__
33//!
34//! OpsWorks CM supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Your servers can only be accessed or managed within the endpoint in which they are created.
35//!   - opsworks-cm.us-east-1.amazonaws.com
36//!   - opsworks-cm.us-east-2.amazonaws.com
37//!   - opsworks-cm.us-west-1.amazonaws.com
38//!   - opsworks-cm.us-west-2.amazonaws.com
39//!   - opsworks-cm.ap-northeast-1.amazonaws.com
40//!   - opsworks-cm.ap-southeast-1.amazonaws.com
41//!   - opsworks-cm.ap-southeast-2.amazonaws.com
42//!   - opsworks-cm.eu-central-1.amazonaws.com
43//!   - opsworks-cm.eu-west-1.amazonaws.com
44//!
45//! For more information, see [OpsWorks endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/opsworks-service.html) in the Amazon Web Services General Reference.
46//!
47//! __Throttling limits__
48//!
49//! All API operations allow for five requests per second with a burst of 10 requests per second.
50//!
51//! ## Getting Started
52//!
53//! > Examples are available for many services and operations, check out the
54//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
55//!
56//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
57//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-opsworkscm` to
58//! your project, add the following to your **Cargo.toml** file:
59//!
60//! ```toml
61//! [dependencies]
62//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
63//! aws-sdk-opsworkscm = "1.84.0"
64//! tokio = { version = "1", features = ["full"] }
65//! ```
66//!
67//! Then in code, a client can be created with the following:
68//!
69//! ```rust,no_run
70//! use aws_sdk_opsworkscm as opsworkscm;
71//!
72//! #[::tokio::main]
73//! async fn main() -> Result<(), opsworkscm::Error> {
74//!     let config = aws_config::load_from_env().await;
75//!     let client = aws_sdk_opsworkscm::Client::new(&config);
76//!
77//!     // ... make some calls with the client
78//!
79//!     Ok(())
80//! }
81//! ```
82//!
83//! See the [client documentation](https://docs.rs/aws-sdk-opsworkscm/latest/aws_sdk_opsworkscm/client/struct.Client.html)
84//! for information on what calls can be made, and the inputs and outputs for each of those calls.
85//!
86//! ## Using the SDK
87//!
88//! Until the SDK is released, we will be adding information about using the SDK to the
89//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
90//! additional sections for the guide by opening an issue and describing what you are trying to do.
91//!
92//! ## Getting Help
93//!
94//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
95//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
96//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
97//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
98//!
99//!
100//! # Crate Organization
101//!
102//! The entry point for most customers will be [`Client`], which exposes one method for each API
103//! offered by AWS OpsWorks CM. The return value of each of these methods is a "fluent builder",
104//! where the different inputs for that API are added by builder-style function call chaining,
105//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
106//! either a successful output or a [`SdkError`](crate::error::SdkError).
107//!
108//! Some of these API inputs may be structs or enums to provide more complex structured information.
109//! These structs and enums live in [`types`](crate::types). There are some simpler types for
110//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
111//!
112//! All types required to configure a client via the [`Config`](crate::Config) struct live
113//! in [`config`](crate::config).
114//!
115//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
116//! is the input, output, and error type for that API, as well as builders to construct each of those.
117//!
118//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
119//! client can return. Any other error type can be converted to this `Error` type via the
120//! [`From`](std::convert::From) trait.
121//!
122//! The other modules within this crate are not required for normal usage.
123
124// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
125pub use error_meta::Error;
126
127#[doc(inline)]
128pub use config::Config;
129
130/// Client for calling AWS OpsWorks CM.
131/// ## Constructing a `Client`
132///
133/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
134/// crate should be used to automatically resolve this config using
135/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
136/// across multiple different AWS SDK clients. This config resolution process can be customized
137/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
138/// the [builder pattern] to customize the default config.
139///
140/// In the simplest case, creating a client looks as follows:
141/// ```rust,no_run
142/// # async fn wrapper() {
143/// let config = aws_config::load_from_env().await;
144/// let client = aws_sdk_opsworkscm::Client::new(&config);
145/// # }
146/// ```
147///
148/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
149/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
150/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
151/// done as follows:
152///
153/// ```rust,no_run
154/// # async fn wrapper() {
155/// let sdk_config = ::aws_config::load_from_env().await;
156/// let config = aws_sdk_opsworkscm::config::Builder::from(&sdk_config)
157/// # /*
158///     .some_service_specific_setting("value")
159/// # */
160///     .build();
161/// # }
162/// ```
163///
164/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
165///
166/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
167/// be done once at application start-up.
168///
169/// [`Config`]: crate::Config
170/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
171/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
172/// [`aws-config` docs]: https://docs.rs/aws-config/*
173/// [`aws-config`]: https://crates.io/crates/aws-config
174/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
175/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
176/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
177/// # Using the `Client`
178///
179/// A client has a function for every operation that can be performed by the service.
180/// For example, the [`AssociateNode`](crate::operation::associate_node) operation has
181/// a [`Client::associate_node`], function which returns a builder for that operation.
182/// The fluent builder ultimately has a `send()` function that returns an async future that
183/// returns a result, as illustrated below:
184///
185/// ```rust,ignore
186/// let result = client.associate_node()
187///     .server_name("example")
188///     .send()
189///     .await;
190/// ```
191///
192/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
193/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
194/// information.
195/// # Waiters
196///
197/// This client provides `wait_until` methods behind the [`Waiters`](crate::client::Waiters) trait.
198/// To use them, simply import the trait, and then call one of the `wait_until` methods. This will
199/// return a waiter fluent builder that takes various parameters, which are documented on the builder
200/// type. Once parameters have been provided, the `wait` method can be called to initiate waiting.
201///
202/// For example, if there was a `wait_until_thing` method, it could look like:
203/// ```rust,ignore
204/// let result = client.wait_until_thing()
205///     .thing_id("someId")
206///     .wait(Duration::from_secs(120))
207///     .await;
208/// ```
209pub mod client;
210
211/// Configuration for AWS OpsWorks CM.
212pub mod config;
213
214/// Common errors and error handling utilities.
215pub mod error;
216
217mod error_meta;
218
219/// Information about this crate.
220pub mod meta;
221
222/// All operations that this crate can perform.
223pub mod operation;
224
225/// Primitives such as `Blob` or `DateTime` used by other types.
226pub mod primitives;
227
228/// Data structures used by operation inputs/outputs.
229pub mod types;
230
231pub(crate) mod protocol_serde;
232
233mod sdk_feature_tracker;
234
235mod serialization_settings;
236
237mod endpoint_lib;
238
239mod lens;
240
241/// Supporting types for waiters.
242///
243/// Note: to use waiters, import the [`Waiters`](crate::client::Waiters) trait, which adds methods prefixed with `wait_until` to the client.
244pub mod waiters;
245
246mod json_errors;
247
248mod serde_util;
249
250#[doc(inline)]
251pub use client::Client;