pub struct ApiGatewayV2httpRequestContext<T1 = Value>{
    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>§authorizer: Option<ApiGatewayV2httpRequestContextAuthorizerDescription<T1>>§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>

§

fn clone(&self) -> ApiGatewayV2httpRequestContext<T1>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T1> Debug for ApiGatewayV2httpRequestContext<T1>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T1> Default for ApiGatewayV2httpRequestContext<T1>

§

fn default() -> ApiGatewayV2httpRequestContext<T1>

Returns the “default value” for a type. Read more
§

impl<'de, T1> Deserialize<'de> for ApiGatewayV2httpRequestContext<T1>

§

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

§

type Rejection = MissingGatewayContextV2

The type of the extraction failures.
source§

fn from_parts(parts: &mut Parts) -> Result<Self, Self::Rejection>

Extracts self from a Parts synchronously.
§

impl<T1> PartialEq for ApiGatewayV2httpRequestContext<T1>

§

fn eq(&self, other: &ApiGatewayV2httpRequestContext<T1>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<T1> Serialize for ApiGatewayV2httpRequestContext<T1>

§

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>

§

impl<T1> StructuralPartialEq for ApiGatewayV2httpRequestContext<T1>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<B> IntoFunctionResponse<B, Body> for B
where B: Serialize,

§

fn into_response(self) -> FunctionResponse<B, Body>

Convert the type into a FunctionResponse.
§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,