pub struct ApiGatewayProxyRequestContext<T1 = Value>where
    T1: DeserializeOwned + Serialize,{Show 16 fields
    pub account_id: Option<String>,
    pub resource_id: Option<String>,
    pub operation_name: Option<String>,
    pub stage: Option<String>,
    pub domain_name: Option<String>,
    pub domain_prefix: Option<String>,
    pub request_id: Option<String>,
    pub protocol: Option<String>,
    pub identity: ApiGatewayRequestIdentity,
    pub resource_path: Option<String>,
    pub path: Option<String>,
    pub authorizer: HashMap<String, T1>,
    pub http_method: Method,
    pub request_time: Option<String>,
    pub request_time_epoch: i64,
    pub apiid: Option<String>,
}Expand description
ApiGatewayProxyRequestContext contains the information to identify the AWS account and resources invoking the
Lambda function. It also includes Cognito identity information for the caller.
Fields§
§account_id: Option<String>§resource_id: Option<String>§operation_name: Option<String>§stage: Option<String>§domain_name: Option<String>§domain_prefix: Option<String>§request_id: Option<String>§protocol: Option<String>§identity: ApiGatewayRequestIdentity§resource_path: Option<String>§path: Option<String>§http_method: Method§request_time: Option<String>§request_time_epoch: i64§apiid: Option<String>The API Gateway rest API Id
Trait Implementations§
source§impl<T1> Clone for ApiGatewayProxyRequestContext<T1>
 
impl<T1> Clone for ApiGatewayProxyRequestContext<T1>
source§fn clone(&self) -> ApiGatewayProxyRequestContext<T1>
 
fn clone(&self) -> ApiGatewayProxyRequestContext<T1>
Returns a copy 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<T1> Debug for ApiGatewayProxyRequestContext<T1>
 
impl<T1> Debug for ApiGatewayProxyRequestContext<T1>
source§impl<T1> Default for ApiGatewayProxyRequestContext<T1>
 
impl<T1> Default for ApiGatewayProxyRequestContext<T1>
source§fn default() -> ApiGatewayProxyRequestContext<T1>
 
fn default() -> ApiGatewayProxyRequestContext<T1>
Returns the “default value” for a type. Read more
source§impl<'de, T1> Deserialize<'de> for ApiGatewayProxyRequestContext<T1>
 
impl<'de, T1> Deserialize<'de> for ApiGatewayProxyRequestContext<T1>
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<ApiGatewayProxyRequestContext<T1>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<ApiGatewayProxyRequestContext<T1>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T1> PartialEq for ApiGatewayProxyRequestContext<T1>
 
impl<T1> PartialEq for ApiGatewayProxyRequestContext<T1>
source§fn eq(&self, other: &ApiGatewayProxyRequestContext<T1>) -> bool
 
fn eq(&self, other: &ApiGatewayProxyRequestContext<T1>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl<T1> Serialize for ApiGatewayProxyRequestContext<T1>where
    T1: DeserializeOwned + Serialize,
 
impl<T1> Serialize for ApiGatewayProxyRequestContext<T1>where
    T1: DeserializeOwned + Serialize,
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T1> Eq for ApiGatewayProxyRequestContext<T1>
impl<T1> StructuralEq for ApiGatewayProxyRequestContext<T1>where
    T1: DeserializeOwned + Serialize,
impl<T1> StructuralPartialEq for ApiGatewayProxyRequestContext<T1>where
    T1: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<T1> RefUnwindSafe for ApiGatewayProxyRequestContext<T1>where
    T1: RefUnwindSafe,
impl<T1> Send for ApiGatewayProxyRequestContext<T1>where
    T1: Send,
impl<T1> Sync for ApiGatewayProxyRequestContext<T1>where
    T1: Sync,
impl<T1> Unpin for ApiGatewayProxyRequestContext<T1>where
    T1: Unpin,
impl<T1> UnwindSafe for ApiGatewayProxyRequestContext<T1>where
    T1: UnwindSafe,
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
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<B> IntoFunctionResponse<B, Body> for Bwhere
    B: Serialize,
 
impl<B> IntoFunctionResponse<B, Body> for Bwhere
    B: Serialize,
source§fn into_response(self) -> FunctionResponse<B, Body>
 
fn into_response(self) -> FunctionResponse<B, Body>
Convert the type into a FunctionResponse.