Struct aws_sdk_managedblockchain::input::ListNodesInput [−][src]
#[non_exhaustive]pub struct ListNodesInput {
pub network_id: Option<String>,
pub member_id: Option<String>,
pub status: Option<NodeStatus>,
pub max_results: Option<i32>,
pub next_token: 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.network_id: Option<String>
The unique identifier of the network for which to list nodes.
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.
status: Option<NodeStatus>
An optional status specifier. If provided, only nodes currently in this status are listed.
max_results: Option<i32>
The maximum number of nodes to list.
next_token: Option<String>
The pagination token that indicates the next set of results to retrieve.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNodes, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNodes, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListNodes
>
Creates a new builder-style object to manufacture ListNodesInput
The unique identifier of the network for which to list nodes.
The unique identifier of the member who owns the nodes to list.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
An optional status specifier. If provided, only nodes currently in this status are listed.
The maximum number of nodes to list.
The pagination token that indicates the next set of results to retrieve.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListNodesInput
impl Send for ListNodesInput
impl Sync for ListNodesInput
impl Unpin for ListNodesInput
impl UnwindSafe for ListNodesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more