pub struct ApiGatewayCustomAuthorizerRequest {
pub type_: Option<String>,
pub authorization_token: Option<String>,
pub method_arn: Option<String>,
}Expand description
ApiGatewayCustomAuthorizerRequest contains data coming in to a custom API Gateway authorizer function.
Fields
type_: Option<String>method_arn: Option<String>nolint: stylecheck
Trait Implementations
sourceimpl Clone for ApiGatewayCustomAuthorizerRequest
impl Clone for ApiGatewayCustomAuthorizerRequest
sourcefn clone(&self) -> ApiGatewayCustomAuthorizerRequest
fn clone(&self) -> ApiGatewayCustomAuthorizerRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Default for ApiGatewayCustomAuthorizerRequest
impl Default for ApiGatewayCustomAuthorizerRequest
sourcefn default() -> ApiGatewayCustomAuthorizerRequest
fn default() -> ApiGatewayCustomAuthorizerRequest
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ApiGatewayCustomAuthorizerRequest
impl<'de> Deserialize<'de> for ApiGatewayCustomAuthorizerRequest
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ApiGatewayCustomAuthorizerRequest> for ApiGatewayCustomAuthorizerRequest
impl PartialEq<ApiGatewayCustomAuthorizerRequest> for ApiGatewayCustomAuthorizerRequest
sourcefn eq(&self, other: &ApiGatewayCustomAuthorizerRequest) -> bool
fn eq(&self, other: &ApiGatewayCustomAuthorizerRequest) -> bool
impl StructuralPartialEq for ApiGatewayCustomAuthorizerRequest
Auto Trait Implementations
impl RefUnwindSafe for ApiGatewayCustomAuthorizerRequest
impl Send for ApiGatewayCustomAuthorizerRequest
impl Sync for ApiGatewayCustomAuthorizerRequest
impl Unpin for ApiGatewayCustomAuthorizerRequest
impl UnwindSafe for ApiGatewayCustomAuthorizerRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more