[][src]Struct rusoto_events::PutEventsRequestEntry

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

Represents an event to be submitted.

Fields

detail: Option<String>

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

This field is required.

detail_type: Option<String>

Free-form string used to decide which fields to expect in the event detail. This field is required.

event_bus_name: Option<String>

The event bus that will receive the event. Only the rules that are associated with this event bus can match the event.

resources: Option<Vec<String>>

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

source: Option<String>

The source of the event. This field is required.

time: Option<f64>

The timestamp of the event, per RFC3339. If no timestamp is provided, the timestamp of the PutEvents call is used.

Trait Implementations

impl Clone for PutEventsRequestEntry[src]

impl Debug for PutEventsRequestEntry[src]

impl Default for PutEventsRequestEntry[src]

impl PartialEq<PutEventsRequestEntry> for PutEventsRequestEntry[src]

impl Serialize for PutEventsRequestEntry[src]

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