aws_sdk_workmail/client/delete_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 [`DeleteIdentityProviderConfiguration`](crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DeleteIdentityProviderConfigurationOutput`](crate::operation::delete_identity_provider_configuration::DeleteIdentityProviderConfigurationOutput)
8 /// - On failure, responds with [`SdkError<DeleteIdentityProviderConfigurationError>`](crate::operation::delete_identity_provider_configuration::DeleteIdentityProviderConfigurationError)
9 pub fn delete_identity_provider_configuration(
10 &self,
11 ) -> crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder {
12 crate::operation::delete_identity_provider_configuration::builders::DeleteIdentityProviderConfigurationFluentBuilder::new(self.handle.clone())
13 }
14}