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 moreAuto 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