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 since Jan 1, 1970 00:00:00 UTC.

The time of the first event, expressed as the number of milliseconds since 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 since 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 since 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]

[src]

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

impl Debug for LogStream
[src]

[src]

Formats the value using the given formatter.

impl Clone for LogStream
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more