pub struct Context {
pub invoke_id: String,
pub aws_request_id: String,
pub function_name: String,
pub function_version: String,
pub log_group_name: String,
pub log_stream_name: Option<String>,
pub memory_limit_in_mb: String,
pub is_default_function_version: Option<bool>,
pub client_context: Option<Value>,
pub identity: Option<Identity>,
pub invoked_function_arn: Option<String>,
}
Fields§
§invoke_id: String
§aws_request_id: String
§function_name: String
§function_version: String
§log_group_name: String
§log_stream_name: Option<String>
§memory_limit_in_mb: String
§is_default_function_version: Option<bool>
§client_context: Option<Value>
§identity: Option<Identity>
§invoked_function_arn: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Context
impl<'de> Deserialize<'de> for Context
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 Context
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
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