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]

[src]

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

impl Debug for UpdateAuthorizerRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateAuthorizerRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations