[][src]Struct rusoto_logs::LogStream

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 Clone for LogStream
[src]

Performs copy-assignment from source. Read more

impl Default for LogStream
[src]

impl PartialEq<LogStream> for LogStream
[src]

impl Debug for LogStream
[src]

impl<'de> Deserialize<'de> for LogStream
[src]

Auto Trait Implementations

impl Send for LogStream

impl Sync for LogStream

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T