[][src]Struct rusoto_managedblockchain::CreateNetworkInput

pub struct CreateNetworkInput {
    pub client_request_token: String,
    pub description: Option<String>,
    pub framework: String,
    pub framework_configuration: Option<NetworkFrameworkConfiguration>,
    pub framework_version: String,
    pub member_configuration: MemberConfiguration,
    pub name: String,
    pub voting_policy: VotingPolicy,
}

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.

description: Option<String>

An optional description for the network.

framework: String

The blockchain framework that the network uses.

framework_configuration: Option<NetworkFrameworkConfiguration>

Configuration properties of the blockchain framework relevant to the network configuration.

framework_version: String

The version of the blockchain framework that the network uses.

member_configuration: MemberConfiguration

Configuration properties for the first member within the network.

name: String

The name of the network.

voting_policy: VotingPolicy

The voting rules used by the network to determine if a proposal is approved.

Trait Implementations

impl Clone for CreateNetworkInput[src]

impl Debug for CreateNetworkInput[src]

impl Default for CreateNetworkInput[src]

impl PartialEq<CreateNetworkInput> for CreateNetworkInput[src]

impl Serialize for CreateNetworkInput[src]

impl StructuralPartialEq for CreateNetworkInput[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.