aws_sdk_appstream/client/describe_user_stack_associations.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 [`DescribeUserStackAssociations`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`stack_name(impl Into<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::stack_name) / [`set_stack_name(Option<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::set_stack_name):<br>required: **false**<br><p>The name of the stack that is associated with the user.</p><br>
7 /// - [`user_name(impl Into<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::user_name) / [`set_user_name(Option<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::set_user_name):<br>required: **false**<br><p>The email address of the user who is associated with the stack.</p><note> <p>Users' email addresses are case-sensitive.</p> </note><br>
8 /// - [`authentication_type(AuthenticationType)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::authentication_type) / [`set_authentication_type(Option<AuthenticationType>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::set_authentication_type):<br>required: **false**<br><p>The authentication type for the user who is associated with the stack. You must specify USERPOOL.</p><br>
9 /// - [`max_results(i32)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum size of each page of results.</p><br>
10 /// - [`next_token(impl Into<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p><br>
11 /// - On success, responds with [`DescribeUserStackAssociationsOutput`](crate::operation::describe_user_stack_associations::DescribeUserStackAssociationsOutput) with field(s):
12 /// - [`user_stack_associations(Option<Vec::<UserStackAssociation>>)`](crate::operation::describe_user_stack_associations::DescribeUserStackAssociationsOutput::user_stack_associations): <p>The UserStackAssociation objects.</p>
13 /// - [`next_token(Option<String>)`](crate::operation::describe_user_stack_associations::DescribeUserStackAssociationsOutput::next_token): <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
14 /// - On failure, responds with [`SdkError<DescribeUserStackAssociationsError>`](crate::operation::describe_user_stack_associations::DescribeUserStackAssociationsError)
15 pub fn describe_user_stack_associations(
16 &self,
17 ) -> crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder {
18 crate::operation::describe_user_stack_associations::builders::DescribeUserStackAssociationsFluentBuilder::new(self.handle.clone())
19 }
20}