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>,
}Expand description
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 theInvitationID. -
REJECTED- The invitee rejected the invitation. -
EXPIRED- The invitee neither created a member nor rejected the invitation before theExpirationDate.
Trait Implementations§
Source§impl Clone for Invitation
impl Clone for Invitation
Source§fn clone(&self) -> Invitation
fn clone(&self) -> Invitation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more