[][src]Struct rusoto_managedblockchain::Member

pub struct Member {
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub framework_attributes: Option<MemberFrameworkAttributes>,
    pub id: Option<String>,
    pub log_publishing_configuration: Option<MemberLogPublishingConfiguration>,
    pub name: Option<String>,
    pub network_id: Option<String>,
    pub status: Option<String>,
}

Member configuration properties.

Fields

creation_date: Option<f64>

The date and time that the member was created.

description: Option<String>

An optional description for the member.

framework_attributes: Option<MemberFrameworkAttributes>

Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.

id: Option<String>

The unique identifier of the member.

log_publishing_configuration: Option<MemberLogPublishingConfiguration>

Configuration properties for logging events associated with a member.

name: Option<String>

The name of the member.

network_id: Option<String>

The unique identifier of the network to which the member belongs.

status: Option<String>

The status of a 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 Member[src]

impl Debug for Member[src]

impl Default for Member[src]

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

impl PartialEq<Member> for Member[src]

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