aws_sdk_iam/client/
enable_outbound_web_identity_federation.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`EnableOutboundWebIdentityFederation`](crate::operation::enable_outbound_web_identity_federation::builders::EnableOutboundWebIdentityFederationFluentBuilder) operation.
4    ///
5    /// - The fluent builder takes no input, just [`send`](crate::operation::enable_outbound_web_identity_federation::builders::EnableOutboundWebIdentityFederationFluentBuilder::send) it.
6    /// - On success, responds with [`EnableOutboundWebIdentityFederationOutput`](crate::operation::enable_outbound_web_identity_federation::EnableOutboundWebIdentityFederationOutput) with field(s):
7    ///   - [`issuer_identifier(Option<String>)`](crate::operation::enable_outbound_web_identity_federation::EnableOutboundWebIdentityFederationOutput::issuer_identifier): <p>A unique issuer URL for your Amazon Web Services account that hosts the OpenID Connect (OIDC) discovery endpoints at <code>/.well-known/openid-configuration and /.well-known/jwks.json</code>. The OpenID Connect (OIDC) discovery endpoints contain verification keys and metadata necessary for token verification.</p>
8    /// - On failure, responds with [`SdkError<EnableOutboundWebIdentityFederationError>`](crate::operation::enable_outbound_web_identity_federation::EnableOutboundWebIdentityFederationError)
9    pub fn enable_outbound_web_identity_federation(
10        &self,
11    ) -> crate::operation::enable_outbound_web_identity_federation::builders::EnableOutboundWebIdentityFederationFluentBuilder {
12        crate::operation::enable_outbound_web_identity_federation::builders::EnableOutboundWebIdentityFederationFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}