pub struct LambdaState {
pub account_id: String,
pub region: String,
pub functions: HashMap<String, LambdaFunction>,
pub event_source_mappings: HashMap<String, EventSourceMapping>,
pub invocations: Vec<LambdaInvocation>,
}Fields§
§account_id: String§region: String§functions: HashMap<String, LambdaFunction>§event_source_mappings: HashMap<String, EventSourceMapping>§invocations: Vec<LambdaInvocation>Recorded invocations from cross-service integrations (SQS, EventBridge, etc.)
Implementations§
Auto Trait Implementations§
impl Freeze for LambdaState
impl RefUnwindSafe for LambdaState
impl Send for LambdaState
impl Sync for LambdaState
impl Unpin for LambdaState
impl UnsafeUnpin for LambdaState
impl UnwindSafe for LambdaState
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