aws_sdk_applicationautoscaling/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//! With Application Auto Scaling, you can configure automatic scaling for the following resources:
22//! - Amazon AppStream 2.0 fleets
23//! - Amazon Aurora Replicas
24//! - Amazon Comprehend document classification and entity recognizer endpoints
25//! - Amazon DynamoDB tables and global secondary indexes throughput capacity
26//! - Amazon ECS services
27//! - Amazon ElastiCache replication groups (Redis OSS and Valkey) and Memcached clusters
28//! - Amazon EMR clusters
29//! - Amazon Keyspaces (for Apache Cassandra) tables
30//! - Lambda function provisioned concurrency
31//! - Amazon Managed Streaming for Apache Kafka broker storage
32//! - Amazon Neptune clusters
33//! - Amazon SageMaker endpoint variants
34//! - Amazon SageMaker inference components
35//! - Amazon SageMaker serverless endpoint provisioned concurrency
36//! - Spot Fleets (Amazon EC2)
37//! - Pool of WorkSpaces
38//! - Custom resources provided by your own applications or services
39//!
40//! To learn more about Application Auto Scaling, see the [Application Auto Scaling User Guide](https://docs.aws.amazon.com/autoscaling/application/userguide/what-is-application-auto-scaling.html).
41//!
42//! __API Summary__
43//!
44//! The Application Auto Scaling service API includes three key sets of actions:
45//! - Register and manage scalable targets - Register Amazon Web Services or custom resources as scalable targets (a resource that Application Auto Scaling can scale), set minimum and maximum capacity limits, and retrieve information on existing scalable targets.
46//! - Configure and manage automatic scaling - Define scaling policies to dynamically scale your resources in response to CloudWatch alarms, schedule one-time or recurring scaling actions, and retrieve your recent scaling activity history.
47//! - Suspend and resume scaling - Temporarily suspend and later resume automatic scaling by calling the [RegisterScalableTarget](https://docs.aws.amazon.com/autoscaling/application/APIReference/API_RegisterScalableTarget.html) API action for any Application Auto Scaling scalable target. You can suspend and resume (individually or in combination) scale-out activities that are triggered by a scaling policy, scale-in activities that are triggered by a scaling policy, and scheduled scaling.
48//!
49//! ## Getting Started
50//!
51//! > Examples are available for many services and operations, check out the
52//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
53//!
54//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
55//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-applicationautoscaling` to
56//! your project, add the following to your **Cargo.toml** file:
57//!
58//! ```toml
59//! [dependencies]
60//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
61//! aws-sdk-applicationautoscaling = "1.80.0"
62//! tokio = { version = "1", features = ["full"] }
63//! ```
64//!
65//! Then in code, a client can be created with the following:
66//!
67//! ```rust,no_run
68//! use aws_sdk_applicationautoscaling as applicationautoscaling;
69//!
70//! #[::tokio::main]
71//! async fn main() -> Result<(), applicationautoscaling::Error> {
72//! let config = aws_config::load_from_env().await;
73//! let client = aws_sdk_applicationautoscaling::Client::new(&config);
74//!
75//! // ... make some calls with the client
76//!
77//! Ok(())
78//! }
79//! ```
80//!
81//! See the [client documentation](https://docs.rs/aws-sdk-applicationautoscaling/latest/aws_sdk_applicationautoscaling/client/struct.Client.html)
82//! for information on what calls can be made, and the inputs and outputs for each of those calls.
83//!
84//! ## Using the SDK
85//!
86//! Until the SDK is released, we will be adding information about using the SDK to the
87//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
88//! additional sections for the guide by opening an issue and describing what you are trying to do.
89//!
90//! ## Getting Help
91//!
92//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
93//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
94//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
95//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
96//!
97//!
98//! # Crate Organization
99//!
100//! The entry point for most customers will be [`Client`], which exposes one method for each API
101//! offered by Application Auto Scaling. The return value of each of these methods is a "fluent builder",
102//! where the different inputs for that API are added by builder-style function call chaining,
103//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
104//! either a successful output or a [`SdkError`](crate::error::SdkError).
105//!
106//! Some of these API inputs may be structs or enums to provide more complex structured information.
107//! These structs and enums live in [`types`](crate::types). There are some simpler types for
108//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
109//!
110//! All types required to configure a client via the [`Config`](crate::Config) struct live
111//! in [`config`](crate::config).
112//!
113//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
114//! is the input, output, and error type for that API, as well as builders to construct each of those.
115//!
116//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
117//! client can return. Any other error type can be converted to this `Error` type via the
118//! [`From`](std::convert::From) trait.
119//!
120//! The other modules within this crate are not required for normal usage.
121
122// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
123pub use error_meta::Error;
124
125#[doc(inline)]
126pub use config::Config;
127
128/// Client for calling Application Auto Scaling.
129/// ## Constructing a `Client`
130///
131/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
132/// crate should be used to automatically resolve this config using
133/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
134/// across multiple different AWS SDK clients. This config resolution process can be customized
135/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
136/// the [builder pattern] to customize the default config.
137///
138/// In the simplest case, creating a client looks as follows:
139/// ```rust,no_run
140/// # async fn wrapper() {
141/// let config = aws_config::load_from_env().await;
142/// let client = aws_sdk_applicationautoscaling::Client::new(&config);
143/// # }
144/// ```
145///
146/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
147/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
148/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
149/// done as follows:
150///
151/// ```rust,no_run
152/// # async fn wrapper() {
153/// let sdk_config = ::aws_config::load_from_env().await;
154/// let config = aws_sdk_applicationautoscaling::config::Builder::from(&sdk_config)
155/// # /*
156/// .some_service_specific_setting("value")
157/// # */
158/// .build();
159/// # }
160/// ```
161///
162/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
163///
164/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
165/// be done once at application start-up.
166///
167/// [`Config`]: crate::Config
168/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
169/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
170/// [`aws-config` docs]: https://docs.rs/aws-config/*
171/// [`aws-config`]: https://crates.io/crates/aws-config
172/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
173/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
174/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
175/// # Using the `Client`
176///
177/// A client has a function for every operation that can be performed by the service.
178/// For example, the [`DeleteScalingPolicy`](crate::operation::delete_scaling_policy) operation has
179/// a [`Client::delete_scaling_policy`], function which returns a builder for that operation.
180/// The fluent builder ultimately has a `send()` function that returns an async future that
181/// returns a result, as illustrated below:
182///
183/// ```rust,ignore
184/// let result = client.delete_scaling_policy()
185/// .policy_name("example")
186/// .send()
187/// .await;
188/// ```
189///
190/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
191/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
192/// information.
193pub mod client;
194
195/// Configuration for Application Auto Scaling.
196pub mod config;
197
198/// Common errors and error handling utilities.
199pub mod error;
200
201mod error_meta;
202
203/// Information about this crate.
204pub mod meta;
205
206/// All operations that this crate can perform.
207pub mod operation;
208
209/// Primitives such as `Blob` or `DateTime` used by other types.
210pub mod primitives;
211
212/// Data structures used by operation inputs/outputs.
213pub mod types;
214
215mod auth_plugin;
216
217pub(crate) mod protocol_serde;
218
219mod sdk_feature_tracker;
220
221mod serialization_settings;
222
223mod endpoint_lib;
224
225mod lens;
226
227mod serde_util;
228
229mod json_errors;
230
231#[doc(inline)]
232pub use client::Client;