#[non_exhaustive]pub struct ListGroupMembershipsInput {
pub group_name: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub aws_account_id: Option<String>,
pub namespace: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.group_name: Option<String>The name of the group that you want to see a membership list of.
next_token: Option<String>A pagination token that can be used in a subsequent request.
max_results: Option<i32>The maximum number of results to return from this request.
aws_account_id: Option<String>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
namespace: Option<String>The namespace of the group that you want a list of users from.
Implementations§
source§impl ListGroupMembershipsInput
impl ListGroupMembershipsInput
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
The name of the group that you want to see a membership list of.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token that can be used in a subsequent request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return from this request.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
source§impl ListGroupMembershipsInput
impl ListGroupMembershipsInput
sourcepub fn builder() -> ListGroupMembershipsInputBuilder
pub fn builder() -> ListGroupMembershipsInputBuilder
Creates a new builder-style object to manufacture ListGroupMembershipsInput.
Trait Implementations§
source§impl Clone for ListGroupMembershipsInput
impl Clone for ListGroupMembershipsInput
source§fn clone(&self) -> ListGroupMembershipsInput
fn clone(&self) -> ListGroupMembershipsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListGroupMembershipsInput
impl Debug for ListGroupMembershipsInput
source§impl PartialEq<ListGroupMembershipsInput> for ListGroupMembershipsInput
impl PartialEq<ListGroupMembershipsInput> for ListGroupMembershipsInput
source§fn eq(&self, other: &ListGroupMembershipsInput) -> bool
fn eq(&self, other: &ListGroupMembershipsInput) -> bool
self and other values to be equal, and is used
by ==.