Interface NodeEthereumAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeEthereumAttributes.Builder,NodeEthereumAttributes>,SdkBuilder<NodeEthereumAttributes.Builder,NodeEthereumAttributes>,SdkPojo
- Enclosing class:
- NodeEthereumAttributes
public static interface NodeEthereumAttributes.Builder extends SdkPojo, CopyableBuilder<NodeEthereumAttributes.Builder,NodeEthereumAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeEthereumAttributes.BuilderhttpEndpoint(String httpEndpoint)The endpoint on which the Ethereum node listens to run Ethereum API methods over HTTP connections from a client.NodeEthereumAttributes.BuilderwebSocketEndpoint(String webSocketEndpoint)The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSocket connections from a client.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
httpEndpoint
NodeEthereumAttributes.Builder httpEndpoint(String httpEndpoint)
The endpoint on which the Ethereum node listens to run Ethereum API 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.
- Parameters:
httpEndpoint- The endpoint on which the Ethereum node listens to run Ethereum API 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webSocketEndpoint
NodeEthereumAttributes.Builder webSocketEndpoint(String webSocketEndpoint)
The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSocket connections from a client. Use this endpoint in client code for smart contracts when using a WebSocket connection. Connections to this endpoint are authenticated using Signature Version 4.
- Parameters:
webSocketEndpoint- The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSocket connections from a client. Use this endpoint in client code for smart contracts when using a WebSocket connection. Connections to this endpoint are authenticated using Signature Version 4.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-