pub struct LambdaInvocation {
pub function_arn: String,
pub payload: String,
pub timestamp: DateTime<Utc>,
pub source: String,
}Expand description
A recorded Lambda invocation from cross-service delivery.
Fields§
§function_arn: String§payload: String§timestamp: DateTime<Utc>§source: StringTrait Implementations§
Source§impl Clone for LambdaInvocation
impl Clone for LambdaInvocation
Source§fn clone(&self) -> LambdaInvocation
fn clone(&self) -> LambdaInvocation
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 LambdaInvocation
impl Debug for LambdaInvocation
Source§impl<'de> Deserialize<'de> for LambdaInvocation
impl<'de> Deserialize<'de> for LambdaInvocation
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 LambdaInvocation
impl RefUnwindSafe for LambdaInvocation
impl Send for LambdaInvocation
impl Sync for LambdaInvocation
impl Unpin for LambdaInvocation
impl UnsafeUnpin for LambdaInvocation
impl UnwindSafe for LambdaInvocation
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