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>,
}Expand description
CloudWatch Logs LogStream.
Fields§
§arn: Option<String>§creation_time: Option<i64>§first_event_timestamp: Option<i64>§last_event_timestamp: Option<i64>§last_ingestion_time: Option<i64>§log_stream_name: Option<String>§stored_bytes: Option<i64>§upload_sequence_token: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogStream
impl<'de> Deserialize<'de> for LogStream
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LogStream
impl RefUnwindSafe for LogStream
impl Send for LogStream
impl Sync for LogStream
impl Unpin for LogStream
impl UnsafeUnpin for LogStream
impl UnwindSafe for LogStream
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more