pub struct LogDelivery {
pub log_group_arn: String,
pub payload: String,
pub timestamp: DateTime<Utc>,
}Expand description
A recorded CloudWatch Logs delivery from EventBridge.
Fields§
§log_group_arn: String§payload: String§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for LogDelivery
impl Clone for LogDelivery
Source§fn clone(&self) -> LogDelivery
fn clone(&self) -> LogDelivery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogDelivery
impl Debug for LogDelivery
Source§impl<'de> Deserialize<'de> for LogDelivery
impl<'de> Deserialize<'de> for LogDelivery
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 LogDelivery
impl RefUnwindSafe for LogDelivery
impl Send for LogDelivery
impl Sync for LogDelivery
impl Unpin for LogDelivery
impl UnsafeUnpin for LogDelivery
impl UnwindSafe for LogDelivery
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