Struct rusoto_logs::LogStream[][src]

pub struct LogStream {
    pub arn: Option<String>,
    pub creation_time: Option<i64>,
    pub first_event_timestamp: Option<i64>,
    pub last_event_timestamp: Option<i64>,
    pub last_ingestion_time: Option<i64>,
    pub log_stream_name: Option<String>,
    pub stored_bytes: Option<i64>,
    pub upload_sequence_token: Option<String>,
}

Represents a log stream, which is a sequence of log events from a single emitter of logs.

Fields

The Amazon Resource Name (ARN) of the log stream.

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

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

the time of the most recent log event in the log stream in CloudWatch Logs. This number is expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. lastEventTime updates on an eventual consistency basis. It typically updates in less than an hour from ingestion, but may take longer in some rare situations.

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

The name of the log stream.

The number of bytes stored.

The sequence token.

Trait Implementations

impl Default for LogStream
[src]

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

impl Debug for LogStream
[src]

Formats the value using the given formatter. Read more

impl Clone for LogStream
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LogStream
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for LogStream

impl Sync for LogStream