[][src]Struct rusoto_managedblockchain::Invitation

pub struct Invitation {
    pub creation_date: Option<f64>,
    pub expiration_date: Option<f64>,
    pub invitation_id: Option<String>,
    pub network_summary: Option<NetworkSummary>,
    pub status: Option<String>,
}

An invitation to an AWS account to create a member and join the network.

Fields

creation_date: Option<f64>

The date and time that the invitation was created.

expiration_date: Option<f64>

The date and time that the invitation expires. This is the CreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, the invitee can no longer create a member and join the network using this InvitationId.

invitation_id: Option<String>

The unique identifier for the invitation.

network_summary: Option<NetworkSummary>status: Option<String>

The status of the invitation:

  • PENDING - The invitee has not created a member to join the network, and the invitation has not yet expired.

  • ACCEPTING - The invitee has begun creating a member, and creation has not yet completed.

  • ACCEPTED - The invitee created a member and joined the network using the InvitationID.

  • REJECTED - The invitee rejected the invitation.

  • EXPIRED - The invitee neither created a member nor rejected the invitation before the ExpirationDate.

Trait Implementations

impl Clone for Invitation[src]

impl Debug for Invitation[src]

impl Default for Invitation[src]

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

impl PartialEq<Invitation> for Invitation[src]

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