pub struct DescribeUserStackAssociationsRequest {
pub authentication_type: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub stack_name: Option<String>,
pub user_name: Option<String>,
}
Fields§
§authentication_type: Option<String>
The authentication type for the user who is associated with the stack. You must specify USERPOOL.
max_results: Option<i64>
The maximum size of each page of results.
next_token: Option<String>
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.
stack_name: Option<String>
The name of the stack that is associated with the user.
user_name: Option<String>
The email address of the user who is associated with the stack.
Users' email addresses are case-sensitive.
Trait Implementations§
Source§impl Clone for DescribeUserStackAssociationsRequest
impl Clone for DescribeUserStackAssociationsRequest
Source§fn clone(&self) -> DescribeUserStackAssociationsRequest
fn clone(&self) -> DescribeUserStackAssociationsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeUserStackAssociationsRequest
impl Default for DescribeUserStackAssociationsRequest
Source§fn default() -> DescribeUserStackAssociationsRequest
fn default() -> DescribeUserStackAssociationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeUserStackAssociationsRequest
impl PartialEq for DescribeUserStackAssociationsRequest
Source§fn eq(&self, other: &DescribeUserStackAssociationsRequest) -> bool
fn eq(&self, other: &DescribeUserStackAssociationsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeUserStackAssociationsRequest
Auto Trait Implementations§
impl Freeze for DescribeUserStackAssociationsRequest
impl RefUnwindSafe for DescribeUserStackAssociationsRequest
impl Send for DescribeUserStackAssociationsRequest
impl Sync for DescribeUserStackAssociationsRequest
impl Unpin for DescribeUserStackAssociationsRequest
impl UnwindSafe for DescribeUserStackAssociationsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more