pub struct ListMembersInput {
pub is_owned: Option<bool>,
pub max_results: Option<i64>,
pub name: Option<String>,
pub network_id: String,
pub next_token: Option<String>,
pub status: Option<String>,
}Fields§
§is_owned: Option<bool>An optional Boolean value. If provided, the request is limited either to members that the current AWS account owns (true) or that other AWS accounts own (false). If omitted, all members are listed.
max_results: Option<i64>The maximum number of members to return in the request.
name: Option<String>The optional name of the member to list.
network_id: StringThe unique identifier of the network for which to list members.
next_token: Option<String>The pagination token that indicates the next set of results to retrieve.
status: Option<String>An optional status specifier. If provided, only members currently in this status are listed.
Trait Implementations§
Source§impl Clone for ListMembersInput
impl Clone for ListMembersInput
Source§fn clone(&self) -> ListMembersInput
fn clone(&self) -> ListMembersInput
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 ListMembersInput
impl Debug for ListMembersInput
Source§impl Default for ListMembersInput
impl Default for ListMembersInput
Source§fn default() -> ListMembersInput
fn default() -> ListMembersInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListMembersInput
impl PartialEq for ListMembersInput
Source§impl Serialize for ListMembersInput
impl Serialize for ListMembersInput
impl StructuralPartialEq for ListMembersInput
Auto Trait Implementations§
impl Freeze for ListMembersInput
impl RefUnwindSafe for ListMembersInput
impl Send for ListMembersInput
impl Sync for ListMembersInput
impl Unpin for ListMembersInput
impl UnwindSafe for ListMembersInput
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