Struct rusoto_logs::OutputLogEvent [] [src]

pub struct OutputLogEvent {
    pub ingestion_time: Option<i64>,
    pub message: Option<String>,
    pub timestamp: Option<i64>,
}

Represents a log event.

Fields

The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

The data contained in the log event.

The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

Trait Implementations

impl Default for OutputLogEvent
[src]

[src]

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

impl Debug for OutputLogEvent
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for OutputLogEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations