pub struct ListNodesInput {
pub max_results: Option<i64>,
pub member_id: Option<String>,
pub network_id: String,
pub next_token: Option<String>,
pub status: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of nodes to list.
member_id: Option<String>
The unique identifier of the member who owns the nodes to list.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
network_id: String
The unique identifier of the network for which to list nodes.
next_token: Option<String>
The pagination token that indicates the next set of results to retrieve.
status: Option<String>
An optional status specifier. If provided, only nodes currently in this status are listed.
Trait Implementations§
Source§impl Clone for ListNodesInput
impl Clone for ListNodesInput
Source§fn clone(&self) -> ListNodesInput
fn clone(&self) -> ListNodesInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListNodesInput
impl Debug for ListNodesInput
Source§impl Default for ListNodesInput
impl Default for ListNodesInput
Source§fn default() -> ListNodesInput
fn default() -> ListNodesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListNodesInput
impl PartialEq for ListNodesInput
Source§impl Serialize for ListNodesInput
impl Serialize for ListNodesInput
impl StructuralPartialEq for ListNodesInput
Auto Trait Implementations§
impl Freeze for ListNodesInput
impl RefUnwindSafe for ListNodesInput
impl Send for ListNodesInput
impl Sync for ListNodesInput
impl Unpin for ListNodesInput
impl UnwindSafe for ListNodesInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more