pub struct CreateNodeInput {
pub client_request_token: String,
pub member_id: Option<String>,
pub network_id: String,
pub node_configuration: NodeConfiguration,
pub tags: Option<HashMap<String, String>>,
}
Fields§
§client_request_token: String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an AWS SDK or the AWS CLI.
member_id: Option<String>
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric.
network_id: String
The unique identifier of the network for the node.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-rinkeby
-
n-ethereum-ropsten
node_configuration: NodeConfiguration
The properties of a node configuration.
Tags to assign to the node. Each tag consists of a key and optional value.
When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.
For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.
Trait Implementations§
Source§impl Clone for CreateNodeInput
impl Clone for CreateNodeInput
Source§fn clone(&self) -> CreateNodeInput
fn clone(&self) -> CreateNodeInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more