aws_sdk_workmail/client/
describe_identity_provider_configuration.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 [`DescribeIdentityProviderConfiguration`](crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`organization_id(impl Into<String>)`](crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder::organization_id) / [`set_organization_id(Option<String>)`](crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder::set_organization_id):<br>required: **true**<br><p>The Organization ID.</p><br>
7    /// - On success, responds with [`DescribeIdentityProviderConfigurationOutput`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput) with field(s):
8    ///   - [`authentication_mode(Option<IdentityProviderAuthenticationMode>)`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput::authentication_mode): <p>The authentication mode used in WorkMail.</p>
9    ///   - [`identity_center_configuration(Option<IdentityCenterConfiguration>)`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput::identity_center_configuration): <p>The details of the IAM Identity Center configuration.</p>
10    ///   - [`personal_access_token_configuration(Option<PersonalAccessTokenConfiguration>)`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput::personal_access_token_configuration): <p>The details of the Personal Access Token configuration.</p>
11    /// - On failure, responds with [`SdkError<DescribeIdentityProviderConfigurationError>`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationError)
12    pub fn describe_identity_provider_configuration(
13        &self,
14    ) -> crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder {
15        crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder::new(
16            self.handle.clone(),
17        )
18    }
19}