Struct lambda_runtime::Context[][src]

#[non_exhaustive]pub struct Context {
    pub request_id: String,
    pub deadline: u64,
    pub invoked_function_arn: String,
    pub xray_trace_id: String,
    pub client_context: Option<ClientContext>,
    pub identity: Option<CognitoIdentity>,
    pub env_config: Config,
}

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)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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]

type Error = Error

The type returned in the event of a conversion error.

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.