Struct rusoto_iot::CreateAuthorizerRequest[][src]

pub struct CreateAuthorizerRequest {
    pub authorizer_function_arn: String,
    pub authorizer_name: String,
    pub status: Option<String>,
    pub token_key_name: String,
    pub token_signing_public_keys: HashMap<String, String>,
}

Fields

The ARN of the authorizer's Lambda function.

The authorizer name.

The status of the create authorizer request.

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

The public keys used to verify the digital signature returned by your custom authentication service.

Trait Implementations

impl Default for CreateAuthorizerRequest
[src]

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

impl Debug for CreateAuthorizerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateAuthorizerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateAuthorizerRequest
[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