[][src]Struct rusoto_ram::ResourceShareInvitation

pub struct ResourceShareInvitation {
    pub invitation_timestamp: Option<f64>,
    pub receiver_account_id: Option<String>,
    pub resource_share_arn: Option<String>,
    pub resource_share_invitation_arn: Option<String>,
    pub resource_share_name: Option<String>,
    pub sender_account_id: Option<String>,
    pub status: Option<String>,
}

Describes an invitation to join a resource share.

Fields

invitation_timestamp: Option<f64>

The date and time when the invitation was sent.

receiver_account_id: Option<String>

The ID of the AWS account that received the invitation.

resource_share_arn: Option<String>

The Amazon Resource Name (ARN) of the resource share.

resource_share_invitation_arn: Option<String>

The Amazon Resource Name (ARN) of the invitation.

resource_share_name: Option<String>

The name of the resource share.

sender_account_id: Option<String>

The ID of the AWS account that sent the invitation.

status: Option<String>

The status of the invitation.

Trait Implementations

impl Clone for ResourceShareInvitation[src]

impl Debug for ResourceShareInvitation[src]

impl Default for ResourceShareInvitation[src]

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

impl PartialEq<ResourceShareInvitation> for ResourceShareInvitation[src]

impl StructuralPartialEq for ResourceShareInvitation[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.