pub struct UpdateAuthorizerRequest {
pub authorizer_function_arn: Option<String>,
pub authorizer_name: String,
pub status: Option<String>,
pub token_key_name: Option<String>,
pub token_signing_public_keys: Option<HashMap<String, String>>,
}Fields§
The ARN of the authorizer's Lambda function.
The authorizer name.
status: Option<String>The status of the update authorizer request.
token_key_name: Option<String>The key used to extract the token from the HTTP headers.
token_signing_public_keys: Option<HashMap<String, String>>The public keys used to verify the token signature.
Trait Implementations§
Source§impl Clone for UpdateAuthorizerRequest
impl Clone for UpdateAuthorizerRequest
Source§fn clone(&self) -> UpdateAuthorizerRequest
fn clone(&self) -> UpdateAuthorizerRequest
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 Debug for UpdateAuthorizerRequest
impl Debug for UpdateAuthorizerRequest
Source§impl Default for UpdateAuthorizerRequest
impl Default for UpdateAuthorizerRequest
Source§fn default() -> UpdateAuthorizerRequest
fn default() -> UpdateAuthorizerRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateAuthorizerRequest
impl PartialEq for UpdateAuthorizerRequest
Source§impl Serialize for UpdateAuthorizerRequest
impl Serialize for UpdateAuthorizerRequest
impl StructuralPartialEq for UpdateAuthorizerRequest
Auto Trait Implementations§
impl Freeze for UpdateAuthorizerRequest
impl RefUnwindSafe for UpdateAuthorizerRequest
impl Send for UpdateAuthorizerRequest
impl Sync for UpdateAuthorizerRequest
impl Unpin for UpdateAuthorizerRequest
impl UnwindSafe for UpdateAuthorizerRequest
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