Struct lamedh_http::Context [−][src]
The Lambda function execution context. The values in this struct are populated using the Lambda environment variables and the headers returned by the poll request to the Runtime APIs.
Fields (Non-exhaustive)
Struct {{ .. }}
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.request_id: String
The AWS request ID generated by the Lambda service.
deadline: u64
The execution deadline for the current invocation in milliseconds.
invoked_function_arn: String
The ARN of the Lambda function being invoked.
xray_trace_id: String
The X-Ray trace ID for the current invocation.
client_context: Option<ClientContext>
The client context object sent by the AWS mobile SDK. This field is empty unless the function is invoked using an AWS mobile SDK.
identity: Option<CognitoIdentity>
The Cognito identity that invoked the function. This field is empty unless the invocation request to the Lambda APIs was made using AWS credentials issues by Amazon Cognito Identity Pools.
env_config: Config
Lambda function configuration from the local environment variables. Includes information such as the function name, memory allocation, version, and log streams.
Trait Implementations
impl Clone for Context
[src]
impl Debug for Context
[src]
impl Default for Context
[src]
impl PartialEq<Context> for Context
[src]
impl StructuralPartialEq for Context
[src]
impl TryFrom<HeaderMap<HeaderValue>> for Context
[src]
Auto Trait Implementations
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,