aws_sdk_ssooidc/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#![forbid(unsafe_code)]
18#![warn(missing_docs)]
19#![cfg_attr(docsrs, feature(doc_auto_cfg))]
20//! IAM Identity Center OpenID Connect (OIDC) is a web service that enables a client (such as CLI or a native application) to register with IAM Identity Center. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with IAM Identity Center.
21//!
22//! __API namespaces__
23//!
24//! IAM Identity Center uses the sso and identitystore API namespaces. IAM Identity Center OpenID Connect uses the sso-oidc namespace.
25//!
26//! __Considerations for using this guide__
27//!
28//! Before you begin using this guide, we recommend that you first review the following important information about how the IAM Identity Center OIDC service works.
29//! - The IAM Identity Center OIDC service currently implements only the portions of the OAuth 2.0 Device Authorization Grant standard ([https://tools.ietf.org/html/rfc8628](https://tools.ietf.org/html/rfc8628)) that are necessary to enable single sign-on authentication with the CLI.
30//! - With older versions of the CLI, the service only emits OIDC access tokens, so to obtain a new token, users must explicitly re-authenticate. To access the OIDC flow that supports token refresh and doesn’t require re-authentication, update to the latest CLI version (1.27.10 for CLI V1 and 2.9.0 for CLI V2) with support for OIDC token refresh and configurable IAM Identity Center session durations. For more information, see [Configure Amazon Web Services access portal session duration](https://docs.aws.amazon.com/singlesignon/latest/userguide/configure-user-session.html).
31//! - The access tokens provided by this service grant access to all Amazon Web Services account entitlements assigned to an IAM Identity Center user, not just a particular application.
32//! - The documentation in this guide does not describe the mechanism to convert the access token into Amazon Web Services Auth (“sigv4”) credentials for use with IAM-protected Amazon Web Services service endpoints. For more information, see [GetRoleCredentials](https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_GetRoleCredentials.html) in the _IAM Identity Center Portal API Reference Guide_.
33//!
34//! For general information about IAM Identity Center, see [What is IAM Identity Center?](https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html) in the _IAM Identity Center User Guide_.
35//!
36//! ## Getting Started
37//!
38//! > Examples are available for many services and operations, check out the
39//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
40//!
41//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
42//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-ssooidc` to
43//! your project, add the following to your **Cargo.toml** file:
44//!
45//! ```toml
46//! [dependencies]
47//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
48//! aws-sdk-ssooidc = "1.62.0"
49//! tokio = { version = "1", features = ["full"] }
50//! ```
51//!
52//! Then in code, a client can be created with the following:
53//!
54//! ```rust,ignore
55//! use aws_sdk_ssooidc as ssooidc;
56//!
57//! #[::tokio::main]
58//! async fn main() -> Result<(), ssooidc::Error> {
59//! let config = aws_config::load_from_env().await;
60//! let client = aws_sdk_ssooidc::Client::new(&config);
61//!
62//! // ... make some calls with the client
63//!
64//! Ok(())
65//! }
66//! ```
67//!
68//! See the [client documentation](https://docs.rs/aws-sdk-ssooidc/latest/aws_sdk_ssooidc/client/struct.Client.html)
69//! for information on what calls can be made, and the inputs and outputs for each of those calls.
70//!
71//! ## Using the SDK
72//!
73//! Until the SDK is released, we will be adding information about using the SDK to the
74//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
75//! additional sections for the guide by opening an issue and describing what you are trying to do.
76//!
77//! ## Getting Help
78//!
79//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
80//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
81//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
82//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
83//!
84//!
85//! # Crate Organization
86//!
87//! The entry point for most customers will be [`Client`], which exposes one method for each API
88//! offered by AWS SSO OIDC. The return value of each of these methods is a "fluent builder",
89//! where the different inputs for that API are added by builder-style function call chaining,
90//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
91//! either a successful output or a [`SdkError`](crate::error::SdkError).
92//!
93//! Some of these API inputs may be structs or enums to provide more complex structured information.
94//! There are some simpler types for
95//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
96//!
97//! All types required to configure a client via the [`Config`](crate::Config) struct live
98//! in [`config`](crate::config).
99//!
100//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
101//! is the input, output, and error type for that API, as well as builders to construct each of those.
102//!
103//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
104//! client can return. Any other error type can be converted to this `Error` type via the
105//! [`From`](std::convert::From) trait.
106//!
107//! The other modules within this crate are not required for normal usage.
108
109// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
110pub use error_meta::Error;
111
112#[doc(inline)]
113pub use config::Config;
114
115/// Client for calling AWS SSO OIDC.
116/// # Using the `Client`
117///
118/// A client has a function for every operation that can be performed by the service.
119/// For example, the [`CreateToken`](crate::operation::create_token) operation has
120/// a [`Client::create_token`], function which returns a builder for that operation.
121/// The fluent builder ultimately has a `send()` function that returns an async future that
122/// returns a result, as illustrated below:
123///
124/// ```rust,ignore
125/// let result = client.create_token()
126/// .client_id("example")
127/// .send()
128/// .await;
129/// ```
130///
131/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
132/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
133/// information.
134pub mod client;
135
136/// Configuration for AWS SSO OIDC.
137pub mod config;
138
139/// Common errors and error handling utilities.
140pub mod error;
141
142mod error_meta;
143
144/// Information about this crate.
145pub mod meta;
146
147/// All operations that this crate can perform.
148pub mod operation;
149
150/// Primitives such as `Blob` or `DateTime` used by other types.
151pub mod primitives;
152
153mod auth_plugin;
154
155pub(crate) mod protocol_serde;
156
157mod sdk_feature_tracker;
158
159mod serialization_settings;
160
161/// Data structures used by operation inputs/outputs.
162pub mod types;
163
164mod endpoint_lib;
165
166mod json_errors;
167
168#[doc(inline)]
169pub use client::Client;