Struct rusoto_iot::UpdateAuthorizerRequest[][src]

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.

The status of the update authorizer request.

The key used to extract the token from the HTTP headers.

The public keys used to verify the token signature.

Trait Implementations

impl Default for UpdateAuthorizerRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateAuthorizerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateAuthorizerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateAuthorizerRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations