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(clippy::useless_conversion)]
16#![allow(clippy::deprecated_semver)]
17#![allow(rustdoc::bare_urls)]
18#![allow(rustdoc::redundant_explicit_links)]
19#![allow(rustdoc::broken_intra_doc_links)]
20#![allow(rustdoc::invalid_html_tags)]
21
22#![forbid(unsafe_code)]
23#![warn(missing_docs)]
24#![cfg_attr(docsrs, feature(doc_cfg))]
25//! 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.
26//! 
27//! __API namespaces__
28//! 
29//! IAM Identity Center uses the sso and identitystore API namespaces. IAM Identity Center OpenID Connect uses the sso-oauth namespace.
30//! 
31//! __Considerations for using this guide__
32//! 
33//! 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.
34//!   - 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.
35//!   - 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).
36//!   - 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.
37//!   - 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_.
38//! 
39//! 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_.
40//! 
41//! ## Getting Started
42//! 
43//! > Examples are available for many services and operations, check out the
44//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
45//! 
46//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
47//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-ssooidc` to
48//! your project, add the following to your **Cargo.toml** file:
49//! 
50//! ```toml
51//! [dependencies]
52//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
53//! aws-sdk-ssooidc = "0.0.0-local"
54//! tokio = { version = "1", features = ["full"] }
55//! ```
56//! 
57//! Then in code, a client can be created with the following:
58//! 
59//! ```rust,ignore
60//! use aws_sdk_ssooidc as ssooidc;
61//! 
62//! #[::tokio::main]
63//! async fn main() -> Result<(), ssooidc::Error> {
64//!     let config = aws_config::load_from_env().await;
65//!     let client = aws_sdk_ssooidc::Client::new(&config);
66//! 
67//!     // ... make some calls with the client
68//! 
69//!     Ok(())
70//! }
71//! ```
72//! 
73//! See the [client documentation](https://docs.rs/aws-sdk-ssooidc/latest/aws_sdk_ssooidc/client/struct.Client.html)
74//! for information on what calls can be made, and the inputs and outputs for each of those calls.
75//! 
76//! ## Using the SDK
77//! 
78//! Until the SDK is released, we will be adding information about using the SDK to the
79//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
80//! additional sections for the guide by opening an issue and describing what you are trying to do.
81//! 
82//! ## Getting Help
83//! 
84//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
85//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
86//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
87//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
88//! 
89//! 
90//! # Crate Organization
91//! 
92//! The entry point for most customers will be [`Client`], which exposes one method for each API
93//! offered by AWS SSO OIDC. The return value of each of these methods is a "fluent builder",
94//! where the different inputs for that API are added by builder-style function call chaining,
95//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
96//! either a successful output or a [`SdkError`](crate::error::SdkError).
97//! 
98//! Some of these API inputs may be structs or enums to provide more complex structured information.
99//! These structs and enums live in [`types`](crate::types). There are some simpler types for
100//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
101//! 
102//! All types required to configure a client via the [`Config`](crate::Config) struct live
103//! in [`config`](crate::config).
104//! 
105//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
106//! is the input, output, and error type for that API, as well as builders to construct each of those.
107//! 
108//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
109//! client can return. Any other error type can be converted to this `Error` type via the
110//! [`From`](std::convert::From) trait.
111//! 
112//! The other modules within this crate are not required for normal usage.
113
114
115// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
116pub use error_meta::Error;
117
118#[doc(inline)]
119pub use config::Config;
120
121/// Client for calling AWS SSO OIDC.
122/// # Using the `Client`
123/// 
124/// A client has a function for every operation that can be performed by the service.
125/// For example, the [`CreateToken`](crate::operation::create_token) operation has
126/// a [`Client::create_token`], function which returns a builder for that operation.
127/// The fluent builder ultimately has a `send()` function that returns an async future that
128/// returns a result, as illustrated below:
129/// 
130/// ```rust,ignore
131/// let result = client.create_token()
132///     .client_id("example")
133///     .send()
134///     .await;
135/// ```
136/// 
137/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
138/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
139/// information.
140pub mod client;
141
142/// Configuration for AWS SSO OIDC.
143pub mod config;
144
145/// Common errors and error handling utilities.
146pub mod error;
147
148mod error_meta;
149
150/// Information about this crate.
151pub mod meta;
152
153/// All operations that this crate can perform.
154pub mod operation;
155
156/// Primitives such as `Blob` or `DateTime` used by other types.
157pub mod primitives;
158
159/// Data structures used by operation inputs/outputs.
160pub mod types;
161
162mod observability_feature;
163
164pub(crate) mod protocol_serde;
165
166mod sdk_feature_tracker;
167
168mod serialization_settings;
169
170mod endpoint_lib;
171
172mod json_errors;
173
174#[doc(inline)]
175pub use client::Client;
176