aws_sdk_applicationdiscovery/
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(clippy::deprecated_semver)]
16#![allow(rustdoc::bare_urls)]
17#![allow(rustdoc::redundant_explicit_links)]
18#![allow(rustdoc::invalid_html_tags)]
19#![forbid(unsafe_code)]
20#![warn(missing_docs)]
21#![cfg_attr(docsrs, feature(doc_cfg))]
22//! Amazon Web Services Application Discovery Service (Application Discovery Service) helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the [Amazon Web Services Application Discovery Service FAQ](http://aws.amazon.com/application-discovery/faqs/).
23//!
24//! Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:
25//!   - __Agentless discovery__ using Amazon Web Services Application Discovery Service Agentless Collector (Agentless Collector), which doesn't require you to install an agent on each host.
26//!     - Agentless Collector gathers server information regardless of the operating systems, which minimizes the time required for initial on-premises infrastructure assessment.
27//!     - Agentless Collector doesn't collect information about network dependencies, only agent-based discovery collects that information.
28//!
29//!   - __Agent-based discovery__ using the Amazon Web Services Application Discovery Agent (Application Discovery Agent) collects a richer set of data than agentless discovery, which you install on one or more hosts in your data center.
30//!     - The agent captures infrastructure and application information, including an inventory of running processes, system performance information, resource utilization, and network dependencies.
31//!     - The information collected by agents is secured at rest and in transit to the Application Discovery Service database in the Amazon Web Services cloud. For more information, see [Amazon Web Services Application Discovery Agent](https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-agent.html).
32//!
33//!   - __Amazon Web Services Partner Network (APN) solutions__ integrate with Application Discovery Service, enabling you to import details of your on-premises environment directly into Amazon Web Services Migration Hub (Migration Hub) without using Agentless Collector or Application Discovery Agent.
34//!     - Third-party application discovery tools can query Amazon Web Services Application Discovery Service, and they can write to the Application Discovery Service database using the public API.
35//!     - In this way, you can import data into Migration Hub and view it, so that you can associate applications with servers and track migrations.
36//!
37//! __Working With This Guide__
38//!
39//! This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for Application Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see [Amazon Web Services SDKs](http://aws.amazon.com/tools/#SDKs).
40//!
41//! This guide is intended for use with the [Amazon Web Services Application Discovery Service User Guide](https://docs.aws.amazon.com/application-discovery/latest/userguide/).
42//!
43//! All data is handled according to the [Amazon Web Services Privacy Policy](https://aws.amazon.com/privacy/). You can operate Application Discovery Service offline to inspect collected data before it is shared with the service.
44//!
45//! ## Getting Started
46//!
47//! > Examples are available for many services and operations, check out the
48//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
49//!
50//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
51//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-applicationdiscovery` to
52//! your project, add the following to your **Cargo.toml** file:
53//!
54//! ```toml
55//! [dependencies]
56//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
57//! aws-sdk-applicationdiscovery = "1.91.0"
58//! tokio = { version = "1", features = ["full"] }
59//! ```
60//!
61//! Then in code, a client can be created with the following:
62//!
63//! ```rust,no_run
64//! use aws_sdk_applicationdiscovery as applicationdiscovery;
65//!
66//! #[::tokio::main]
67//! async fn main() -> Result<(), applicationdiscovery::Error> {
68//!     let config = aws_config::load_from_env().await;
69//!     let client = aws_sdk_applicationdiscovery::Client::new(&config);
70//!
71//!     // ... make some calls with the client
72//!
73//!     Ok(())
74//! }
75//! ```
76//!
77//! See the [client documentation](https://docs.rs/aws-sdk-applicationdiscovery/latest/aws_sdk_applicationdiscovery/client/struct.Client.html)
78//! for information on what calls can be made, and the inputs and outputs for each of those calls.
79//!
80//! ## Using the SDK
81//!
82//! Until the SDK is released, we will be adding information about using the SDK to the
83//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
84//! additional sections for the guide by opening an issue and describing what you are trying to do.
85//!
86//! ## Getting Help
87//!
88//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
89//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
90//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
91//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
92//!
93//!
94//! # Crate Organization
95//!
96//! The entry point for most customers will be [`Client`], which exposes one method for each API
97//! offered by AWS Application Discovery Service. The return value of each of these methods is a "fluent builder",
98//! where the different inputs for that API are added by builder-style function call chaining,
99//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
100//! either a successful output or a [`SdkError`](crate::error::SdkError).
101//!
102//! Some of these API inputs may be structs or enums to provide more complex structured information.
103//! These structs and enums live in [`types`](crate::types). There are some simpler types for
104//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
105//!
106//! All types required to configure a client via the [`Config`](crate::Config) struct live
107//! in [`config`](crate::config).
108//!
109//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
110//! is the input, output, and error type for that API, as well as builders to construct each of those.
111//!
112//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
113//! client can return. Any other error type can be converted to this `Error` type via the
114//! [`From`](std::convert::From) trait.
115//!
116//! The other modules within this crate are not required for normal usage.
117
118// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
119pub use error_meta::Error;
120
121#[doc(inline)]
122pub use config::Config;
123
124/// Client for calling AWS Application Discovery Service.
125/// ## Constructing a `Client`
126///
127/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
128/// crate should be used to automatically resolve this config using
129/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
130/// across multiple different AWS SDK clients. This config resolution process can be customized
131/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
132/// the [builder pattern] to customize the default config.
133///
134/// In the simplest case, creating a client looks as follows:
135/// ```rust,no_run
136/// # async fn wrapper() {
137/// let config = aws_config::load_from_env().await;
138/// let client = aws_sdk_applicationdiscovery::Client::new(&config);
139/// # }
140/// ```
141///
142/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
143/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
144/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
145/// done as follows:
146///
147/// ```rust,no_run
148/// # async fn wrapper() {
149/// let sdk_config = ::aws_config::load_from_env().await;
150/// let config = aws_sdk_applicationdiscovery::config::Builder::from(&sdk_config)
151/// # /*
152///     .some_service_specific_setting("value")
153/// # */
154///     .build();
155/// # }
156/// ```
157///
158/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
159///
160/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
161/// be done once at application start-up.
162///
163/// [`Config`]: crate::Config
164/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
165/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
166/// [`aws-config` docs]: https://docs.rs/aws-config/*
167/// [`aws-config`]: https://crates.io/crates/aws-config
168/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
169/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
170/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
171/// # Using the `Client`
172///
173/// A client has a function for every operation that can be performed by the service.
174/// For example, the [`AssociateConfigurationItemsToApplication`](crate::operation::associate_configuration_items_to_application) operation has
175/// a [`Client::associate_configuration_items_to_application`], function which returns a builder for that operation.
176/// The fluent builder ultimately has a `send()` function that returns an async future that
177/// returns a result, as illustrated below:
178///
179/// ```rust,ignore
180/// let result = client.associate_configuration_items_to_application()
181///     .application_configuration_id("example")
182///     .send()
183///     .await;
184/// ```
185///
186/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
187/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
188/// information.
189pub mod client;
190
191/// Configuration for AWS Application Discovery Service.
192pub mod config;
193
194/// Common errors and error handling utilities.
195pub mod error;
196
197mod error_meta;
198
199/// Information about this crate.
200pub mod meta;
201
202/// All operations that this crate can perform.
203pub mod operation;
204
205/// Primitives such as `Blob` or `DateTime` used by other types.
206pub mod primitives;
207
208/// Data structures used by operation inputs/outputs.
209pub mod types;
210
211pub(crate) mod client_idempotency_token;
212
213mod idempotency_token;
214
215pub(crate) mod protocol_serde;
216
217mod sdk_feature_tracker;
218
219mod serialization_settings;
220
221mod endpoint_lib;
222
223mod lens;
224
225mod serde_util;
226
227mod json_errors;
228
229#[doc(inline)]
230pub use client::Client;