#[non_exhaustive]pub struct UpdateAuthorizerInput {
pub authorizer_name: Option<String>,
pub authorizer_function_arn: Option<String>,
pub token_key_name: Option<String>,
pub token_signing_public_keys: Option<HashMap<String, String>>,
pub status: Option<AuthorizerStatus>,
pub enable_caching_for_http: Option<bool>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.The authorizer name.
The ARN of the authorizer's Lambda function.
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.
status: Option<AuthorizerStatus>
The status of the update authorizer request.
enable_caching_for_http: Option<bool>
When true
, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds
. The cached result is used while the device reuses the same HTTP connection.
Implementations§
source§impl UpdateAuthorizerInput
impl UpdateAuthorizerInput
The authorizer name.
The ARN of the authorizer's Lambda function.
sourcepub fn token_key_name(&self) -> Option<&str>
pub fn token_key_name(&self) -> Option<&str>
The key used to extract the token from the HTTP headers.
sourcepub fn token_signing_public_keys(&self) -> Option<&HashMap<String, String>>
pub fn token_signing_public_keys(&self) -> Option<&HashMap<String, String>>
The public keys used to verify the token signature.
sourcepub fn status(&self) -> Option<&AuthorizerStatus>
pub fn status(&self) -> Option<&AuthorizerStatus>
The status of the update authorizer request.
sourcepub fn enable_caching_for_http(&self) -> Option<bool>
pub fn enable_caching_for_http(&self) -> Option<bool>
When true
, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds
. The cached result is used while the device reuses the same HTTP connection.
source§impl UpdateAuthorizerInput
impl UpdateAuthorizerInput
sourcepub fn builder() -> UpdateAuthorizerInputBuilder
pub fn builder() -> UpdateAuthorizerInputBuilder
Creates a new builder-style object to manufacture UpdateAuthorizerInput
.
Trait Implementations§
source§impl Clone for UpdateAuthorizerInput
impl Clone for UpdateAuthorizerInput
source§fn clone(&self) -> UpdateAuthorizerInput
fn clone(&self) -> UpdateAuthorizerInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateAuthorizerInput
impl Debug for UpdateAuthorizerInput
source§impl PartialEq for UpdateAuthorizerInput
impl PartialEq for UpdateAuthorizerInput
source§fn eq(&self, other: &UpdateAuthorizerInput) -> bool
fn eq(&self, other: &UpdateAuthorizerInput) -> bool
self
and other
values to be equal, and is used
by ==
.