aws_sdk_wickr/
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//! Welcome to the _Amazon Web Services Wickr API Reference_.
23//!
24//! The Amazon Web Services Wickr application programming interface (API) is designed for administrators to perform key tasks, such as creating and managing Amazon Web Services Wickr, networks, users, security groups, bots and more. This guide provides detailed information about the Amazon Web Services Wickr API, including operations, types, inputs and outputs, and error codes. You can use an Amazon Web Services SDK, the Amazon Web Services Command Line Interface (Amazon Web Services CLI, or the REST API to make API calls for Amazon Web Services Wickr.
25//!
26//! _Using Amazon Web Services SDK_
27//!
28//! The SDK clients authenticate your requests by using access keys that you provide. For more information, see [Authentication and access using Amazon Web Services SDKs and tools](https://docs.aws.amazon.com/sdkref/latest/guide/access.html) in the _Amazon Web Services SDKs and Tools Reference Guide_.
29//!
30//! _Using Amazon Web Services CLI_
31//!
32//! Use your access keys with the Amazon Web Services CLI to make API calls. For more information about setting up the Amazon Web Services CLI, see [Getting started with the Amazon Web Services CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html) in the _Amazon Web Services Command Line Interface User Guide for Version 2_.
33//!
34//! _Using REST APIs_
35//!
36//! If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Web Services Wickr supports Signature Version 4. For more information, see [Amazon Web Services Signature Version 4 for API requests](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html) in the _Amazon Web Services Identity and Access Management User Guide_.
37//!
38//! Access and permissions to the APIs can be controlled by Amazon Web Services Identity and Access Management. The managed policy [Amazon Web ServicesWickrFullAccess](https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam-awsmanpol.html#security-iam-awsmanpol-AWSWickrFullAccess) grants full administrative permission to the Amazon Web Services Wickr service APIs. For more information on restricting access to specific operations, see [Identity and access management for Amazon Web Services Wickr](https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam.html) in the _Amazon Web Services Wickr Administration Guide_.
39//!
40//! _Types of Errors_:
41//!
42//! The Amazon Web Services Wickr APIs provide an HTTP interface. HTTP defines ranges of HTTP Status Codes for different types of error responses.
43//!   1. Client errors are indicated by HTTP Status Code class of 4xx
44//!   1. Service errors are indicated by HTTP Status Code class of 5xx
45//!
46//! In this reference guide, the documentation for each API has an Errors section that includes a brief discussion about HTTP status codes. We recommend looking there as part of your investigation when you get an error.
47//!
48//! ## Getting Started
49//!
50//! > Examples are available for many services and operations, check out the
51//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
52//!
53//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
54//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-wickr` to
55//! your project, add the following to your **Cargo.toml** file:
56//!
57//! ```toml
58//! [dependencies]
59//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
60//! aws-sdk-wickr = "1.0.0"
61//! tokio = { version = "1", features = ["full"] }
62//! ```
63//!
64//! Then in code, a client can be created with the following:
65//!
66//! ```rust,no_run
67//! use aws_sdk_wickr as wickr;
68//!
69//! #[::tokio::main]
70//! async fn main() -> Result<(), wickr::Error> {
71//!     let config = aws_config::load_from_env().await;
72//!     let client = aws_sdk_wickr::Client::new(&config);
73//!
74//!     // ... make some calls with the client
75//!
76//!     Ok(())
77//! }
78//! ```
79//!
80//! See the [client documentation](https://docs.rs/aws-sdk-wickr/latest/aws_sdk_wickr/client/struct.Client.html)
81//! for information on what calls can be made, and the inputs and outputs for each of those calls.
82//!
83//! ## Using the SDK
84//!
85//! Until the SDK is released, we will be adding information about using the SDK to the
86//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
87//! additional sections for the guide by opening an issue and describing what you are trying to do.
88//!
89//! ## Getting Help
90//!
91//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
92//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
93//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
94//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
95//!
96//!
97//! # Crate Organization
98//!
99//! The entry point for most customers will be [`Client`], which exposes one method for each API
100//! offered by AWS Wickr Admin API. The return value of each of these methods is a "fluent builder",
101//! where the different inputs for that API are added by builder-style function call chaining,
102//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
103//! either a successful output or a [`SdkError`](crate::error::SdkError).
104//!
105//! Some of these API inputs may be structs or enums to provide more complex structured information.
106//! These structs and enums live in [`types`](crate::types). There are some simpler types for
107//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
108//!
109//! All types required to configure a client via the [`Config`](crate::Config) struct live
110//! in [`config`](crate::config).
111//!
112//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
113//! is the input, output, and error type for that API, as well as builders to construct each of those.
114//!
115//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
116//! client can return. Any other error type can be converted to this `Error` type via the
117//! [`From`](std::convert::From) trait.
118//!
119//! The other modules within this crate are not required for normal usage.
120
121// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
122pub use error_meta::Error;
123
124#[doc(inline)]
125pub use config::Config;
126
127/// Client for calling AWS Wickr Admin API.
128/// ## Constructing a `Client`
129///
130/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
131/// crate should be used to automatically resolve this config using
132/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
133/// across multiple different AWS SDK clients. This config resolution process can be customized
134/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
135/// the [builder pattern] to customize the default config.
136///
137/// In the simplest case, creating a client looks as follows:
138/// ```rust,no_run
139/// # async fn wrapper() {
140/// let config = aws_config::load_from_env().await;
141/// let client = aws_sdk_wickr::Client::new(&config);
142/// # }
143/// ```
144///
145/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
146/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
147/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
148/// done as follows:
149///
150/// ```rust,no_run
151/// # async fn wrapper() {
152/// let sdk_config = ::aws_config::load_from_env().await;
153/// let config = aws_sdk_wickr::config::Builder::from(&sdk_config)
154/// # /*
155///     .some_service_specific_setting("value")
156/// # */
157///     .build();
158/// # }
159/// ```
160///
161/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
162///
163/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
164/// be done once at application start-up.
165///
166/// [`Config`]: crate::Config
167/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
168/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
169/// [`aws-config` docs]: https://docs.rs/aws-config/*
170/// [`aws-config`]: https://crates.io/crates/aws-config
171/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
172/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
173/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
174/// # Using the `Client`
175///
176/// A client has a function for every operation that can be performed by the service.
177/// For example, the [`BatchCreateUser`](crate::operation::batch_create_user) operation has
178/// a [`Client::batch_create_user`], function which returns a builder for that operation.
179/// The fluent builder ultimately has a `send()` function that returns an async future that
180/// returns a result, as illustrated below:
181///
182/// ```rust,ignore
183/// let result = client.batch_create_user()
184///     .network_id("example")
185///     .send()
186///     .await;
187/// ```
188///
189/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
190/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
191/// information.
192pub mod client;
193
194/// Configuration for AWS Wickr Admin API.
195pub mod config;
196
197/// Common errors and error handling utilities.
198pub mod error;
199
200mod error_meta;
201
202/// Information about this crate.
203pub mod meta;
204
205/// All operations that this crate can perform.
206pub mod operation;
207
208/// Primitives such as `Blob` or `DateTime` used by other types.
209pub mod primitives;
210
211/// Data structures used by operation inputs/outputs.
212pub mod types;
213
214pub(crate) mod client_idempotency_token;
215
216mod idempotency_token;
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;