Struct aws_sdk_managedblockchain::operation::list_members::builders::ListMembersInputBuilder
source · #[non_exhaustive]pub struct ListMembersInputBuilder { /* private fields */ }
Expand description
A builder for ListMembersInput
.
Implementations§
source§impl ListMembersInputBuilder
impl ListMembersInputBuilder
sourcepub fn network_id(self, input: impl Into<String>) -> Self
pub fn network_id(self, input: impl Into<String>) -> Self
The unique identifier of the network for which to list members.
sourcepub fn set_network_id(self, input: Option<String>) -> Self
pub fn set_network_id(self, input: Option<String>) -> Self
The unique identifier of the network for which to list members.
sourcepub fn status(self, input: MemberStatus) -> Self
pub fn status(self, input: MemberStatus) -> Self
An optional status specifier. If provided, only members currently in this status are listed.
sourcepub fn set_status(self, input: Option<MemberStatus>) -> Self
pub fn set_status(self, input: Option<MemberStatus>) -> Self
An optional status specifier. If provided, only members currently in this status are listed.
sourcepub fn is_owned(self, input: bool) -> Self
pub fn is_owned(self, input: bool) -> Self
An optional Boolean value. If provided, the request is limited either to members that the current Amazon Web Services account owns (true
) or that other Amazon Web Services accountsn own (false
). If omitted, all members are listed.
sourcepub fn set_is_owned(self, input: Option<bool>) -> Self
pub fn set_is_owned(self, input: Option<bool>) -> Self
An optional Boolean value. If provided, the request is limited either to members that the current Amazon Web Services account owns (true
) or that other Amazon Web Services accountsn own (false
). If omitted, all members are listed.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of members to return in the request.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of members to return in the request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token that indicates the next set of results to retrieve.
sourcepub fn build(self) -> Result<ListMembersInput, BuildError>
pub fn build(self) -> Result<ListMembersInput, BuildError>
Consumes the builder and constructs a ListMembersInput
.
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 ==
.