Struct rusoto_iot::TestInvokeAuthorizerRequest[][src]

pub struct TestInvokeAuthorizerRequest {
    pub authorizer_name: String,
    pub token: String,
    pub token_signature: String,
}

Fields

The custom authorizer name.

The token returned by your custom authentication service.

The signature made with the token and your custom authentication service's private key.

Trait Implementations

impl Default for TestInvokeAuthorizerRequest
[src]

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

impl Debug for TestInvokeAuthorizerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for TestInvokeAuthorizerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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