Struct rusoto_events::PutEventsRequestEntry [] [src]

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

Represents an event to be submitted.

Fields

In the JSON sense, an object containing fields, which may also contain nested subobjects. No constraints are imposed on its contents.

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

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

The source of the event.

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

Trait Implementations

impl Default for PutEventsRequestEntry
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for PutEventsRequestEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PutEventsRequestEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations