#[non_exhaustive]pub struct ApiGatewayProxyRequestContext {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: ApiGatewayRequestAuthorizer,
pub http_method: Method,
pub request_time: Option<String>,
pub request_time_epoch: i64,
pub apiid: Option<String>,
}Available on crate feature
aws-lambda only.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 (Non-exhaustive)§
This struct is marked as 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.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 Clone for ApiGatewayProxyRequestContext
impl Clone for ApiGatewayProxyRequestContext
Source§fn clone(&self) -> ApiGatewayProxyRequestContext
fn clone(&self) -> ApiGatewayProxyRequestContext
Returns a duplicate 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 Default for ApiGatewayProxyRequestContext
impl Default for ApiGatewayProxyRequestContext
Source§fn default() -> ApiGatewayProxyRequestContext
fn default() -> ApiGatewayProxyRequestContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiGatewayProxyRequestContext
impl<'de> Deserialize<'de> for ApiGatewayProxyRequestContext
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApiGatewayProxyRequestContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApiGatewayProxyRequestContext, <__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 ApiGatewayProxyRequestContext
impl<P> FromParts<P> for ApiGatewayProxyRequestContext
Source§impl PartialEq for ApiGatewayProxyRequestContext
impl PartialEq for ApiGatewayProxyRequestContext
Source§fn eq(&self, other: &ApiGatewayProxyRequestContext) -> bool
fn eq(&self, other: &ApiGatewayProxyRequestContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiGatewayProxyRequestContext
impl Serialize for ApiGatewayProxyRequestContext
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 Eq for ApiGatewayProxyRequestContext
impl StructuralPartialEq for ApiGatewayProxyRequestContext
Auto Trait Implementations§
impl Freeze for ApiGatewayProxyRequestContext
impl RefUnwindSafe for ApiGatewayProxyRequestContext
impl Send for ApiGatewayProxyRequestContext
impl Sync for ApiGatewayProxyRequestContext
impl Unpin for ApiGatewayProxyRequestContext
impl UnwindSafe for ApiGatewayProxyRequestContext
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§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.
Creates a shared type from an unshared type.