aws_sdk_appstream/client/
batch_disassociate_user_stack.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 [`BatchDisassociateUserStack`](crate::operation::batch_disassociate_user_stack::builders::BatchDisassociateUserStackFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`user_stack_associations(UserStackAssociation)`](crate::operation::batch_disassociate_user_stack::builders::BatchDisassociateUserStackFluentBuilder::user_stack_associations) / [`set_user_stack_associations(Option<Vec::<UserStackAssociation>>)`](crate::operation::batch_disassociate_user_stack::builders::BatchDisassociateUserStackFluentBuilder::set_user_stack_associations):<br>required: **true**<br><p>The list of UserStackAssociation objects.</p><br>
7    /// - On success, responds with [`BatchDisassociateUserStackOutput`](crate::operation::batch_disassociate_user_stack::BatchDisassociateUserStackOutput) with field(s):
8    ///   - [`errors(Option<Vec::<UserStackAssociationError>>)`](crate::operation::batch_disassociate_user_stack::BatchDisassociateUserStackOutput::errors): <p>The list of UserStackAssociationError objects.</p>
9    /// - On failure, responds with [`SdkError<BatchDisassociateUserStackError>`](crate::operation::batch_disassociate_user_stack::BatchDisassociateUserStackError)
10    pub fn batch_disassociate_user_stack(
11        &self,
12    ) -> crate::operation::batch_disassociate_user_stack::builders::BatchDisassociateUserStackFluentBuilder {
13        crate::operation::batch_disassociate_user_stack::builders::BatchDisassociateUserStackFluentBuilder::new(self.handle.clone())
14    }
15}