Struct rusoto_iot::AuthorizerDescription[][src]

pub struct AuthorizerDescription {
    pub authorizer_arn: Option<String>,
    pub authorizer_function_arn: Option<String>,
    pub authorizer_name: Option<String>,
    pub creation_date: Option<f64>,
    pub last_modified_date: Option<f64>,
    pub status: Option<String>,
    pub token_key_name: Option<String>,
    pub token_signing_public_keys: Option<HashMap<String, String>>,
}

The authorizer description.

Fields

The authorizer ARN.

The authorizer's Lambda function ARN.

The authorizer name.

The UNIX timestamp of when the authorizer was created.

The UNIX timestamp of when the authorizer was last updated.

The status of the authorizer.

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

The public keys used to validate the token signature returned by your custom authentication service.

Trait Implementations

impl Default for AuthorizerDescription
[src]

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

impl Debug for AuthorizerDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthorizerDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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