Struct aws_sdk_macie2::operation::list_members::ListMembersInput
source · #[non_exhaustive]pub struct ListMembersInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub only_associated: 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.max_results: Option<i32>
The maximum number of items to include in each page of a paginated response.
next_token: Option<String>
The nextToken string that specifies which page of results to return in a paginated response.
only_associated: Option<String>
Specifies which accounts to include in the response, based on the status of an account's relationship with the administrator account. By default, the response includes only current member accounts. To include all accounts, set this value to false.
Implementations§
source§impl ListMembersInput
impl ListMembersInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to include in each page of a paginated response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn only_associated(&self) -> Option<&str>
pub fn only_associated(&self) -> Option<&str>
Specifies which accounts to include in the response, based on the status of an account's relationship with the administrator account. By default, the response includes only current member accounts. To include all accounts, set this value to false.
source§impl ListMembersInput
impl ListMembersInput
sourcepub fn builder() -> ListMembersInputBuilder
pub fn builder() -> ListMembersInputBuilder
Creates a new builder-style object to manufacture ListMembersInput
.
Trait Implementations§
source§impl Clone for ListMembersInput
impl Clone for ListMembersInput
source§fn clone(&self) -> ListMembersInput
fn clone(&self) -> ListMembersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListMembersInput
impl Debug for ListMembersInput
source§impl PartialEq<ListMembersInput> for ListMembersInput
impl PartialEq<ListMembersInput> for ListMembersInput
source§fn eq(&self, other: &ListMembersInput) -> bool
fn eq(&self, other: &ListMembersInput) -> bool
self
and other
values to be equal, and is used
by ==
.