Struct aws_sdk_iot::input::UpdateAuthorizerInput
source · #[non_exhaustive]pub struct UpdateAuthorizerInput { /* private fields */ }
Implementations§
source§impl UpdateAuthorizerInput
impl UpdateAuthorizerInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuthorizer, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuthorizer, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateAuthorizer
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateAuthorizerInput
.
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.
Trait Implementations§
source§impl Clone for UpdateAuthorizerInput
impl Clone for UpdateAuthorizerInput
source§fn clone(&self) -> UpdateAuthorizerInput
fn clone(&self) -> UpdateAuthorizerInput
Returns a copy 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 UpdateAuthorizerInput
impl Debug for UpdateAuthorizerInput
source§impl PartialEq<UpdateAuthorizerInput> for UpdateAuthorizerInput
impl PartialEq<UpdateAuthorizerInput> for UpdateAuthorizerInput
source§fn eq(&self, other: &UpdateAuthorizerInput) -> bool
fn eq(&self, other: &UpdateAuthorizerInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.