#[non_exhaustive]pub struct DeleteNodeInputBuilder { /* private fields */ }
Expand description
A builder for DeleteNodeInput
.
Implementations§
source§impl DeleteNodeInputBuilder
impl DeleteNodeInputBuilder
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 that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
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 that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
sourcepub fn get_network_id(&self) -> &Option<String>
pub fn get_network_id(&self) -> &Option<String>
The unique identifier of the network that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
sourcepub fn member_id(self, input: impl Into<String>) -> Self
pub fn member_id(self, input: impl Into<String>) -> Self
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn set_member_id(self, input: Option<String>) -> Self
pub fn set_member_id(self, input: Option<String>) -> Self
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn get_member_id(&self) -> &Option<String>
pub fn get_member_id(&self) -> &Option<String>
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn node_id(self, input: impl Into<String>) -> Self
pub fn node_id(self, input: impl Into<String>) -> Self
The unique identifier of the node.
This field is required.sourcepub fn set_node_id(self, input: Option<String>) -> Self
pub fn set_node_id(self, input: Option<String>) -> Self
The unique identifier of the node.
sourcepub fn get_node_id(&self) -> &Option<String>
pub fn get_node_id(&self) -> &Option<String>
The unique identifier of the node.
sourcepub fn build(self) -> Result<DeleteNodeInput, BuildError>
pub fn build(self) -> Result<DeleteNodeInput, BuildError>
Consumes the builder and constructs a DeleteNodeInput
.
source§impl DeleteNodeInputBuilder
impl DeleteNodeInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteNodeOutput, SdkError<DeleteNodeError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteNodeOutput, SdkError<DeleteNodeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteNodeInputBuilder
impl Clone for DeleteNodeInputBuilder
source§fn clone(&self) -> DeleteNodeInputBuilder
fn clone(&self) -> DeleteNodeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteNodeInputBuilder
impl Debug for DeleteNodeInputBuilder
source§impl Default for DeleteNodeInputBuilder
impl Default for DeleteNodeInputBuilder
source§fn default() -> DeleteNodeInputBuilder
fn default() -> DeleteNodeInputBuilder
source§impl PartialEq for DeleteNodeInputBuilder
impl PartialEq for DeleteNodeInputBuilder
source§fn eq(&self, other: &DeleteNodeInputBuilder) -> bool
fn eq(&self, other: &DeleteNodeInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.