[][src]Struct rusoto_iot::CreateAuthorizerRequest

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

authorizer_function_arn: String

The ARN of the authorizer's Lambda function.

authorizer_name: String

The authorizer name.

status: Option<String>

The status of the create authorizer request.

token_key_name: String

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

token_signing_public_keys: HashMap<String, String>

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

Trait Implementations

impl Clone for CreateAuthorizerRequest[src]

impl Default for CreateAuthorizerRequest[src]

impl PartialEq<CreateAuthorizerRequest> for CreateAuthorizerRequest[src]

impl Debug for CreateAuthorizerRequest[src]

impl StructuralPartialEq for CreateAuthorizerRequest[src]

impl Serialize for CreateAuthorizerRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self