[][src]Struct rusoto_events::PutPartnerEventsRequestEntry

pub struct PutPartnerEventsRequestEntry {
    pub detail: Option<String>,
    pub detail_type: Option<String>,
    pub resources: Option<Vec<String>>,
    pub source: Option<String>,
    pub time: Option<f64>,
}

The details about an event generated by an SaaS partner.

Fields

detail: Option<String>

A valid JSON string. There is no other schema imposed. The JSON string may contain fields and nested subobjects.

detail_type: Option<String>

A free-form string used to decide what fields to expect in the event detail.

resources: Option<Vec<String>>

AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. Any number, including zero, may be present.

source: Option<String>

The event source that is generating the evntry.

time: Option<f64>

The date and time of the event.

Trait Implementations

impl Clone for PutPartnerEventsRequestEntry[src]

impl Debug for PutPartnerEventsRequestEntry[src]

impl Default for PutPartnerEventsRequestEntry[src]

impl PartialEq<PutPartnerEventsRequestEntry> for PutPartnerEventsRequestEntry[src]

impl Serialize for PutPartnerEventsRequestEntry[src]

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