[][src]Struct rusoto_managedblockchain::Network

pub struct Network {
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub framework: Option<String>,
    pub framework_attributes: Option<NetworkFrameworkAttributes>,
    pub framework_version: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub voting_policy: Option<VotingPolicy>,
    pub vpc_endpoint_service_name: Option<String>,
}

Network configuration properties.

Fields

creation_date: Option<f64>

The date and time that the network was created.

description: Option<String>

Attributes of the blockchain framework for the network.

framework: Option<String>

The blockchain framework that the network uses.

framework_attributes: Option<NetworkFrameworkAttributes>

Attributes of the blockchain framework that the network uses.

framework_version: Option<String>

The version of the blockchain framework that the network uses.

id: Option<String>

The unique identifier of the network.

name: Option<String>

The name of the network.

status: Option<String>

The current status of the network.

voting_policy: Option<VotingPolicy>

The voting rules for the network to decide if a proposal is accepted.

vpc_endpoint_service_name: Option<String>

The VPC endpoint service name of the VPC endpoint service of the network. Members use the VPC endpoint service name to create a VPC endpoint to access network resources.

Trait Implementations

impl Clone for Network[src]

impl Debug for Network[src]

impl Default for Network[src]

impl<'de> Deserialize<'de> for Network[src]

impl PartialEq<Network> for Network[src]

impl StructuralPartialEq for Network[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.