aws_sdk_codeconnections/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::broken_intra_doc_links)]
19#![allow(rustdoc::invalid_html_tags)]
20#![forbid(unsafe_code)]
21#![warn(missing_docs)]
22#![cfg_attr(docsrs, feature(doc_cfg))]
23//! This Amazon Web Services CodeConnections API Reference provides descriptions and usage examples of the operations and data types for the Amazon Web Services CodeConnections API. You can use the connections API to work with connections and installations.
24//!
25//! _Connections_ are configurations that you use to connect Amazon Web Services resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.
26//!
27//! When you create a connection, the console initiates a third-party connection handshake. _Installations_ are the apps that are used to conduct this handshake. For example, the installation for the Bitbucket provider type is the Bitbucket app. When you create a connection, you can choose an existing installation or create one.
28//!
29//! When you want to create a connection to an installed provider type such as GitHub Enterprise Server, you create a _host_ for your connections.
30//!
31//! You can work with connections by calling:
32//! - CreateConnection, which creates a uniquely named connection that can be referenced by services such as CodePipeline.
33//! - DeleteConnection, which deletes the specified connection.
34//! - GetConnection, which returns information about the connection, including the connection status.
35//! - ListConnections, which lists the connections associated with your account.
36//!
37//! You can work with hosts by calling:
38//! - CreateHost, which creates a host that represents the infrastructure where your provider is installed.
39//! - DeleteHost, which deletes the specified host.
40//! - GetHost, which returns information about the host, including the setup status.
41//! - ListHosts, which lists the hosts associated with your account.
42//!
43//! You can work with tags in Amazon Web Services CodeConnections by calling the following:
44//! - ListTagsForResource, which gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in Amazon Web Services CodeConnections.
45//! - TagResource, which adds or updates tags for a resource in Amazon Web Services CodeConnections.
46//! - UntagResource, which removes tags for a resource in Amazon Web Services CodeConnections.
47//!
48//! For information about how to use Amazon Web Services CodeConnections, see the [Developer Tools User Guide](https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html).
49//!
50//! ## Getting Started
51//!
52//! > Examples are available for many services and operations, check out the
53//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
54//!
55//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
56//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-codeconnections` to
57//! your project, add the following to your **Cargo.toml** file:
58//!
59//! ```toml
60//! [dependencies]
61//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
62//! aws-sdk-codeconnections = "1.78.0"
63//! tokio = { version = "1", features = ["full"] }
64//! ```
65//!
66//! Then in code, a client can be created with the following:
67//!
68//! ```rust,no_run
69//! use aws_sdk_codeconnections as codeconnections;
70//!
71//! #[::tokio::main]
72//! async fn main() -> Result<(), codeconnections::Error> {
73//! let config = aws_config::load_from_env().await;
74//! let client = aws_sdk_codeconnections::Client::new(&config);
75//!
76//! // ... make some calls with the client
77//!
78//! Ok(())
79//! }
80//! ```
81//!
82//! See the [client documentation](https://docs.rs/aws-sdk-codeconnections/latest/aws_sdk_codeconnections/client/struct.Client.html)
83//! for information on what calls can be made, and the inputs and outputs for each of those calls.
84//!
85//! ## Using the SDK
86//!
87//! Until the SDK is released, we will be adding information about using the SDK to the
88//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
89//! additional sections for the guide by opening an issue and describing what you are trying to do.
90//!
91//! ## Getting Help
92//!
93//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
94//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
95//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
96//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
97//!
98//!
99//! # Crate Organization
100//!
101//! The entry point for most customers will be [`Client`], which exposes one method for each API
102//! offered by AWS CodeConnections. The return value of each of these methods is a "fluent builder",
103//! where the different inputs for that API are added by builder-style function call chaining,
104//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
105//! either a successful output or a [`SdkError`](crate::error::SdkError).
106//!
107//! Some of these API inputs may be structs or enums to provide more complex structured information.
108//! These structs and enums live in [`types`](crate::types). There are some simpler types for
109//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
110//!
111//! All types required to configure a client via the [`Config`](crate::Config) struct live
112//! in [`config`](crate::config).
113//!
114//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
115//! is the input, output, and error type for that API, as well as builders to construct each of those.
116//!
117//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
118//! client can return. Any other error type can be converted to this `Error` type via the
119//! [`From`](std::convert::From) trait.
120//!
121//! The other modules within this crate are not required for normal usage.
122
123// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
124pub use error_meta::Error;
125
126#[doc(inline)]
127pub use config::Config;
128
129/// Client for calling AWS CodeConnections.
130/// ## Constructing a `Client`
131///
132/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
133/// crate should be used to automatically resolve this config using
134/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
135/// across multiple different AWS SDK clients. This config resolution process can be customized
136/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
137/// the [builder pattern] to customize the default config.
138///
139/// In the simplest case, creating a client looks as follows:
140/// ```rust,no_run
141/// # async fn wrapper() {
142/// let config = aws_config::load_from_env().await;
143/// let client = aws_sdk_codeconnections::Client::new(&config);
144/// # }
145/// ```
146///
147/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
148/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
149/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
150/// done as follows:
151///
152/// ```rust,no_run
153/// # async fn wrapper() {
154/// let sdk_config = ::aws_config::load_from_env().await;
155/// let config = aws_sdk_codeconnections::config::Builder::from(&sdk_config)
156/// # /*
157/// .some_service_specific_setting("value")
158/// # */
159/// .build();
160/// # }
161/// ```
162///
163/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
164///
165/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
166/// be done once at application start-up.
167///
168/// [`Config`]: crate::Config
169/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
170/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
171/// [`aws-config` docs]: https://docs.rs/aws-config/*
172/// [`aws-config`]: https://crates.io/crates/aws-config
173/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
174/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
175/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
176/// # Using the `Client`
177///
178/// A client has a function for every operation that can be performed by the service.
179/// For example, the [`CreateConnection`](crate::operation::create_connection) operation has
180/// a [`Client::create_connection`], function which returns a builder for that operation.
181/// The fluent builder ultimately has a `send()` function that returns an async future that
182/// returns a result, as illustrated below:
183///
184/// ```rust,ignore
185/// let result = client.create_connection()
186/// .provider_type("example")
187/// .send()
188/// .await;
189/// ```
190///
191/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
192/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
193/// information.
194pub mod client;
195
196/// Configuration for AWS CodeConnections.
197pub mod config;
198
199/// Common errors and error handling utilities.
200pub mod error;
201
202mod error_meta;
203
204/// Information about this crate.
205pub mod meta;
206
207/// All operations that this crate can perform.
208pub mod operation;
209
210/// Primitives such as `Blob` or `DateTime` used by other types.
211pub mod primitives;
212
213/// Data structures used by operation inputs/outputs.
214pub mod types;
215
216mod observability_feature;
217
218pub(crate) mod protocol_serde;
219
220mod sdk_feature_tracker;
221
222mod serialization_settings;
223
224mod endpoint_lib;
225
226mod lens;
227
228mod serde_util;
229
230mod json_errors;
231
232#[doc(inline)]
233pub use client::Client;