aws_sdk_workmail/client/
describe_identity_provider_configuration.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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(),
        )
    }
}