#[non_exhaustive]pub struct ListMembersInputBuilder { /* private fields */ }
Expand description
A builder for ListMembersInput
.
Implementations§
source§impl ListMembersInputBuilder
impl ListMembersInputBuilder
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to include in each page of a paginated response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to include in each page of a paginated response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of items to include in each page of a paginated response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn only_associated(self, input: impl Into<String>) -> Self
pub fn only_associated(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_only_associated(self, input: Option<String>) -> Self
pub fn set_only_associated(self, input: Option<String>) -> Self
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.
sourcepub fn get_only_associated(&self) -> &Option<String>
pub fn get_only_associated(&self) -> &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.
sourcepub fn build(self) -> Result<ListMembersInput, BuildError>
pub fn build(self) -> Result<ListMembersInput, BuildError>
Consumes the builder and constructs a ListMembersInput
.
source§impl ListMembersInputBuilder
impl ListMembersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListMembersOutput, SdkError<ListMembersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListMembersOutput, SdkError<ListMembersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListMembersInputBuilder
impl Clone for ListMembersInputBuilder
source§fn clone(&self) -> ListMembersInputBuilder
fn clone(&self) -> ListMembersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListMembersInputBuilder
impl Debug for ListMembersInputBuilder
source§impl Default for ListMembersInputBuilder
impl Default for ListMembersInputBuilder
source§fn default() -> ListMembersInputBuilder
fn default() -> ListMembersInputBuilder
source§impl PartialEq<ListMembersInputBuilder> for ListMembersInputBuilder
impl PartialEq<ListMembersInputBuilder> for ListMembersInputBuilder
source§fn eq(&self, other: &ListMembersInputBuilder) -> bool
fn eq(&self, other: &ListMembersInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.