aws_sdk_iotmanagedintegrations/client/deregister_account_association.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 [`DeregisterAccountAssociation`](crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`managed_thing_id(impl Into<String>)`](crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder::managed_thing_id) / [`set_managed_thing_id(Option<String>)`](crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder::set_managed_thing_id):<br>required: **true**<br><p>The identifier of the managed thing to be deregistered from the account association.</p><br>
7 /// - [`account_association_id(impl Into<String>)`](crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder::account_association_id) / [`set_account_association_id(Option<String>)`](crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder::set_account_association_id):<br>required: **true**<br><p>The unique identifier of the account association to be deregistered.</p><br>
8 /// - On success, responds with [`DeregisterAccountAssociationOutput`](crate::operation::deregister_account_association::DeregisterAccountAssociationOutput)
9 /// - On failure, responds with [`SdkError<DeregisterAccountAssociationError>`](crate::operation::deregister_account_association::DeregisterAccountAssociationError)
10 pub fn deregister_account_association(
11 &self,
12 ) -> crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder {
13 crate::operation::deregister_account_association::builders::DeregisterAccountAssociationFluentBuilder::new(self.handle.clone())
14 }
15}