Struct aws_sdk_managedblockchain::model::NodeEthereumAttributes [−][src]
#[non_exhaustive]pub struct NodeEthereumAttributes {
pub http_endpoint: Option<String>,
pub web_socket_endpoint: Option<String>,
}
Expand description
Attributes of an Ethereum node.
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.http_endpoint: Option<String>
The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over HTTP connections from a client. Use this endpoint in client code for smart contracts when using an HTTP connection. Connections to this endpoint are authenticated using Signature Version 4.
web_socket_endpoint: Option<String>
The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSockets connections from a client. Use this endpoint in client code for smart contracts when using a WebSockets connection. Connections to this endpoint are authenticated using Signature Version 4.
Implementations
Creates a new builder-style object to manufacture NodeEthereumAttributes
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 NodeEthereumAttributes
impl Send for NodeEthereumAttributes
impl Sync for NodeEthereumAttributes
impl Unpin for NodeEthereumAttributes
impl UnwindSafe for NodeEthereumAttributes
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