Struct aws_sdk_iot::input::UpdateAuthorizerInput [−][src]
#[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>,
}
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuthorizer, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuthorizer, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateAuthorizer
>
Creates a new builder-style object to manufacture UpdateAuthorizerInput
The authorizer name.
The ARN of the authorizer's Lambda function.
The key used to extract the token from the HTTP headers.
The public keys used to verify the token signature.
The status of the update authorizer request.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateAuthorizerInput
impl Send for UpdateAuthorizerInput
impl Sync for UpdateAuthorizerInput
impl Unpin for UpdateAuthorizerInput
impl UnwindSafe for UpdateAuthorizerInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more