aws_sdk_workmail/client/describe_identity_provider_configuration.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeIdentityProviderConfiguration`](crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - On success, responds with [`DescribeIdentityProviderConfigurationOutput`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput) with field(s):
/// - [`authentication_mode(Option<IdentityProviderAuthenticationMode>)`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationOutput::authentication_mode): <p>The authentication mode used in WorkMail.</p>
/// - [`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>
/// - [`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>
/// - On failure, responds with [`SdkError<DescribeIdentityProviderConfigurationError>`](crate::operation::describe_identity_provider_configuration::DescribeIdentityProviderConfigurationError)
pub fn describe_identity_provider_configuration(
&self,
) -> crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder {
crate::operation::describe_identity_provider_configuration::builders::DescribeIdentityProviderConfigurationFluentBuilder::new(
self.handle.clone(),
)
}
}