Struct aws_sdk_managedblockchain::input::GetNodeInput [−][src]
#[non_exhaustive]pub struct GetNodeInput {
pub network_id: Option<String>,
pub member_id: Option<String>,
pub node_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 that the node is on.
member_id: Option<String>
The unique identifier of the member that owns the node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
node_id: Option<String>
The unique identifier of the node.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNode, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNode, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetNode
>
Creates a new builder-style object to manufacture GetNodeInput
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 GetNodeInput
impl Send for GetNodeInput
impl Sync for GetNodeInput
impl Unpin for GetNodeInput
impl UnwindSafe for GetNodeInput
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