aws_sdk_workmail/client/
delete_identity_provider_configuration.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteIdentityProviderConfiguration`](crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`organization_id(impl Into<String>)`](crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder::organization_id) / [`set_organization_id(Option<String>)`](crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder::set_organization_id):<br>required: **true**<br><p>The Organization ID.</p><br>
    /// - On success, responds with [`DeleteIdentityProviderConfigurationOutput`](crate::operation::delete_identity_provider_configuration::DeleteIdentityProviderConfigurationOutput)
    /// - On failure, responds with [`SdkError<DeleteIdentityProviderConfigurationError>`](crate::operation::delete_identity_provider_configuration::DeleteIdentityProviderConfigurationError)
    pub fn delete_identity_provider_configuration(
        &self,
    ) -> crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder {
        crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder::new(self.handle.clone())
    }
}