pub struct ApiGatewayV2httpRequestContext<T1 = Value>where
T1: DeserializeOwned + Serialize,{
pub route_key: Option<String>,
pub account_id: Option<String>,
pub stage: Option<String>,
pub request_id: Option<String>,
pub authorizer: Option<ApiGatewayV2httpRequestContextAuthorizerDescription<T1>>,
pub apiid: Option<String>,
pub domain_name: Option<String>,
pub domain_prefix: Option<String>,
pub time: Option<String>,
pub time_epoch: i64,
pub http: ApiGatewayV2httpRequestContextHttpDescription,
pub authentication: Option<ApiGatewayV2httpRequestContextAuthentication>,
}
Available on crate feature
aws-lambda
only.Expand description
ApiGatewayV2httpRequestContext
contains the information to identify the AWS account and resources invoking the Lambda function.
Fields§
§route_key: Option<String>
§account_id: Option<String>
§stage: Option<String>
§request_id: Option<String>
§apiid: Option<String>
The API Gateway HTTP API Id
domain_name: Option<String>
§domain_prefix: Option<String>
§time: Option<String>
§time_epoch: i64
§http: ApiGatewayV2httpRequestContextHttpDescription
§authentication: Option<ApiGatewayV2httpRequestContextAuthentication>
Trait Implementations§
§impl<T1> Clone for ApiGatewayV2httpRequestContext<T1>where
T1: Clone + DeserializeOwned + Serialize,
impl<T1> Clone for ApiGatewayV2httpRequestContext<T1>where T1: Clone + DeserializeOwned + Serialize,
§fn clone(&self) -> ApiGatewayV2httpRequestContext<T1>
fn clone(&self) -> ApiGatewayV2httpRequestContext<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 more§impl<T1> Debug for ApiGatewayV2httpRequestContext<T1>where
T1: Debug + DeserializeOwned + Serialize,
impl<T1> Debug for ApiGatewayV2httpRequestContext<T1>where T1: Debug + DeserializeOwned + Serialize,
§impl<T1> Default for ApiGatewayV2httpRequestContext<T1>where
T1: Default + DeserializeOwned + Serialize,
impl<T1> Default for ApiGatewayV2httpRequestContext<T1>where T1: Default + DeserializeOwned + Serialize,
§fn default() -> ApiGatewayV2httpRequestContext<T1>
fn default() -> ApiGatewayV2httpRequestContext<T1>
Returns the “default value” for a type. Read more
§impl<'de, T1> Deserialize<'de> for ApiGatewayV2httpRequestContext<T1>where
T1: DeserializeOwned + Serialize + Default,
impl<'de, T1> Deserialize<'de> for ApiGatewayV2httpRequestContext<T1>where T1: DeserializeOwned + Serialize + Default,
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ApiGatewayV2httpRequestContext<T1>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ApiGatewayV2httpRequestContext<T1>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<P> FromParts<P> for ApiGatewayV2httpRequestContext
impl<P> FromParts<P> for ApiGatewayV2httpRequestContext
§type Rejection = MissingGatewayContextV2
type Rejection = MissingGatewayContextV2
The type of the extraction failures.
§impl<T1> PartialEq<ApiGatewayV2httpRequestContext<T1>> for ApiGatewayV2httpRequestContext<T1>where
T1: PartialEq<T1> + DeserializeOwned + Serialize,
impl<T1> PartialEq<ApiGatewayV2httpRequestContext<T1>> for ApiGatewayV2httpRequestContext<T1>where T1: PartialEq<T1> + DeserializeOwned + Serialize,
§fn eq(&self, other: &ApiGatewayV2httpRequestContext<T1>) -> bool
fn eq(&self, other: &ApiGatewayV2httpRequestContext<T1>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl<T1> Serialize for ApiGatewayV2httpRequestContext<T1>where
T1: DeserializeOwned + Serialize,
impl<T1> Serialize for ApiGatewayV2httpRequestContext<T1>where T1: DeserializeOwned + Serialize,
§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 ApiGatewayV2httpRequestContext<T1>where T1: Eq + DeserializeOwned + Serialize,
impl<T1> StructuralEq for ApiGatewayV2httpRequestContext<T1>where T1: DeserializeOwned + Serialize,
impl<T1> StructuralPartialEq for ApiGatewayV2httpRequestContext<T1>where T1: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<T1> RefUnwindSafe for ApiGatewayV2httpRequestContext<T1>where T1: RefUnwindSafe,
impl<T1> Send for ApiGatewayV2httpRequestContext<T1>where T1: Send,
impl<T1> Sync for ApiGatewayV2httpRequestContext<T1>where T1: Sync,
impl<T1> Unpin for ApiGatewayV2httpRequestContext<T1>where T1: Unpin,
impl<T1> UnwindSafe for ApiGatewayV2httpRequestContext<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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.