[][src]Struct rusoto_managedblockchain::MemberSummary

pub struct MemberSummary {
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub is_owned: Option<bool>,
    pub name: Option<String>,
    pub status: Option<String>,
}

A summary of configuration properties for a member.

Applies only to Hyperledger Fabric.

Fields

creation_date: Option<f64>

The date and time that the member was created.

description: Option<String>

An optional description of the member.

id: Option<String>

The unique identifier of the member.

is_owned: Option<bool>

An indicator of whether the member is owned by your AWS account or a different AWS account.

name: Option<String>

The name of the member.

status: Option<String>

The status of the member.

  • CREATING - The AWS account is in the process of creating a member.

  • AVAILABLE - The member has been created and can participate in the network.

  • CREATE_FAILED - The AWS account attempted to create a member and creation failed.

  • DELETING - The member and all associated resources are in the process of being deleted. Either the AWS account that owns the member deleted it, or the member is being deleted as the result of an APPROVED PROPOSAL to remove the member.

  • DELETED - The member can no longer participate on the network and all associated resources are deleted. Either the AWS account that owns the member deleted it, or the member is being deleted as the result of an APPROVED PROPOSAL to remove the member.

Trait Implementations

impl Clone for MemberSummary[src]

impl Debug for MemberSummary[src]

impl Default for MemberSummary[src]

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

impl PartialEq<MemberSummary> for MemberSummary[src]

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