pub struct ListMembersRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub only_associated: Option<bool>,
}
Fields§
§max_results: Option<i64>
The maximum number of items to return in the response.
next_token: Option<String>
The token that is required for pagination. On your first call to the ListMembers
operation, set the value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
only_associated: Option<bool>
Specifies which member accounts to include in the response based on their relationship status with the administrator account. The default value is TRUE
.
If OnlyAssociated
is set to TRUE
, the response includes member accounts whose relationship status with the administrator account is set to ENABLED
.
If OnlyAssociated
is set to FALSE
, the response includes all existing member accounts.
Trait Implementations§
Source§impl Clone for ListMembersRequest
impl Clone for ListMembersRequest
Source§fn clone(&self) -> ListMembersRequest
fn clone(&self) -> ListMembersRequest
Returns a duplicate 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 Debug for ListMembersRequest
impl Debug for ListMembersRequest
Source§impl Default for ListMembersRequest
impl Default for ListMembersRequest
Source§fn default() -> ListMembersRequest
fn default() -> ListMembersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListMembersRequest
impl PartialEq for ListMembersRequest
Source§impl Serialize for ListMembersRequest
impl Serialize for ListMembersRequest
impl StructuralPartialEq for ListMembersRequest
Auto Trait Implementations§
impl Freeze for ListMembersRequest
impl RefUnwindSafe for ListMembersRequest
impl Send for ListMembersRequest
impl Sync for ListMembersRequest
impl Unpin for ListMembersRequest
impl UnwindSafe for ListMembersRequest
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