pub struct TransitGatewayInvitation {
pub id: Option<i32>,
pub name: Option<String>,
pub resource_share_uid: Option<String>,
pub aws_account_id: Option<String>,
pub status: Option<String>,
pub shared_date: Option<String>,
}Expand description
Transit Gateway resource share invitation
Fields§
§id: Option<i32>Invitation ID
name: Option<String>Invitation name
AWS Resource share UID
aws_account_id: Option<String>AWS account ID
status: Option<String>Invitation status
Date the resource was shared
Trait Implementations§
Source§impl Clone for TransitGatewayInvitation
impl Clone for TransitGatewayInvitation
Source§fn clone(&self) -> TransitGatewayInvitation
fn clone(&self) -> TransitGatewayInvitation
Returns a duplicate of the value. Read more
1.0.0 · 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 TransitGatewayInvitation
impl Debug for TransitGatewayInvitation
Source§impl<'de> Deserialize<'de> for TransitGatewayInvitation
impl<'de> Deserialize<'de> for TransitGatewayInvitation
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 TransitGatewayInvitation
impl RefUnwindSafe for TransitGatewayInvitation
impl Send for TransitGatewayInvitation
impl Sync for TransitGatewayInvitation
impl Unpin for TransitGatewayInvitation
impl UnwindSafe for TransitGatewayInvitation
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