aws_sdk_mpa/client/delete_identity_source.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 [`DeleteIdentitySource`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identity_source_arn(impl Into<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::identity_source_arn) / [`set_identity_source_arn(Option<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::set_identity_source_arn):<br>required: **true**<br><p>Amazon Resource Name (ARN) for identity source.</p><br>
7 /// - On success, responds with [`DeleteIdentitySourceOutput`](crate::operation::delete_identity_source::DeleteIdentitySourceOutput)
8 /// - On failure, responds with [`SdkError<DeleteIdentitySourceError>`](crate::operation::delete_identity_source::DeleteIdentitySourceError)
9 pub fn delete_identity_source(&self) -> crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder {
10 crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::new(self.handle.clone())
11 }
12}