[][src]Struct rusoto_cognito_idp::LambdaConfigType

pub struct LambdaConfigType {
    pub create_auth_challenge: Option<String>,
    pub custom_message: Option<String>,
    pub define_auth_challenge: Option<String>,
    pub post_authentication: Option<String>,
    pub post_confirmation: Option<String>,
    pub pre_authentication: Option<String>,
    pub pre_sign_up: Option<String>,
    pub pre_token_generation: Option<String>,
    pub user_migration: Option<String>,
    pub verify_auth_challenge_response: Option<String>,
}

Specifies the configuration for AWS Lambda triggers.

Fields

create_auth_challenge: Option<String>

Creates an authentication challenge.

custom_message: Option<String>

A custom Message AWS Lambda trigger.

define_auth_challenge: Option<String>

Defines the authentication challenge.

post_authentication: Option<String>

A post-authentication AWS Lambda trigger.

post_confirmation: Option<String>

A post-confirmation AWS Lambda trigger.

pre_authentication: Option<String>

A pre-authentication AWS Lambda trigger.

pre_sign_up: Option<String>

A pre-registration AWS Lambda trigger.

pre_token_generation: Option<String>

A Lambda trigger that is invoked before token generation.

user_migration: Option<String>

The user migration Lambda config type.

verify_auth_challenge_response: Option<String>

Verifies the authentication challenge response.

Trait Implementations

impl Clone for LambdaConfigType[src]

impl Default for LambdaConfigType[src]

impl PartialEq<LambdaConfigType> for LambdaConfigType[src]

impl Debug for LambdaConfigType[src]

impl StructuralPartialEq for LambdaConfigType[src]

impl<'de> Deserialize<'de> for LambdaConfigType[src]

impl Serialize for LambdaConfigType[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self