[][src]Struct rusoto_managedblockchain::CreateNodeInput

pub struct CreateNodeInput {
    pub client_request_token: String,
    pub member_id: Option<String>,
    pub network_id: String,
    pub node_configuration: NodeConfiguration,
}

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 NetworkIds:

  • n-ethereum-mainnet

  • n-ethereum-rinkeby

  • n-ethereum-ropsten

node_configuration: NodeConfiguration

The properties of a node configuration.

Trait Implementations

impl Clone for CreateNodeInput[src]

impl Debug for CreateNodeInput[src]

impl Default for CreateNodeInput[src]

impl PartialEq<CreateNodeInput> for CreateNodeInput[src]

impl Serialize for CreateNodeInput[src]

impl StructuralPartialEq for CreateNodeInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.