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.
This field is required.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 get_network_id(&self) -> &Option<String>
pub fn get_network_id(&self) -> &Option<String>
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 get_status(&self) -> &Option<MemberStatus>
pub fn get_status(&self) -> &Option<MemberStatus>
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 get_is_owned(&self) -> &Option<bool>
pub fn get_is_owned(&self) -> &Option<bool>
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 get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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
.
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 for ListMembersInputBuilder
impl PartialEq 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 ==
.