1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIdentityProvider`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identity_provider_arn(impl Into<String>)`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::identity_provider_arn) / [`set_identity_provider_arn(Option<String>)`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::set_identity_provider_arn): <p>The ARN of the identity provider.</p>
    /// - On success, responds with [`GetIdentityProviderOutput`](crate::operation::get_identity_provider::GetIdentityProviderOutput) with field(s):
    ///   - [`identity_provider(Option<IdentityProvider>)`](crate::operation::get_identity_provider::GetIdentityProviderOutput::identity_provider): <p>The identity provider.</p>
    /// - On failure, responds with [`SdkError<GetIdentityProviderError>`](crate::operation::get_identity_provider::GetIdentityProviderError)
    pub fn get_identity_provider(
        &self,
    ) -> crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder {
        crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::new(
            self.handle.clone(),
        )
    }
}