pub struct InvitationRecord {
pub arn: String,
pub resource_share_arn: String,
pub resource_share_name: String,
pub sender_account_id: String,
pub receiver_account_id: String,
pub invitation_timestamp: DateTime<Utc>,
pub status: String,
}Expand description
A resource-share invitation delivered to an external account.
Fields§
§arn: String§sender_account_id: String§receiver_account_id: String§invitation_timestamp: DateTime<Utc>§status: StringTrait Implementations§
Source§impl Clone for InvitationRecord
impl Clone for InvitationRecord
Source§fn clone(&self) -> InvitationRecord
fn clone(&self) -> InvitationRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvitationRecord
impl Debug for InvitationRecord
Source§impl<'de> Deserialize<'de> for InvitationRecord
impl<'de> Deserialize<'de> for InvitationRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InvitationRecord
impl RefUnwindSafe for InvitationRecord
impl Send for InvitationRecord
impl Sync for InvitationRecord
impl Unpin for InvitationRecord
impl UnsafeUnpin for InvitationRecord
impl UnwindSafe for InvitationRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more