Struct rusoto_cognito_idp::LambdaConfigType [] [src]

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 verify_auth_challenge_response: Option<String>,
}

Specifies the type of configuration for AWS Lambda triggers.

Fields

Creates an authentication challenge.

A custom Message AWS Lambda trigger.

Defines the authentication challenge.

A post-authentication AWS Lambda trigger.

A post-confirmation AWS Lambda trigger.

A pre-authentication AWS Lambda trigger.

A pre-registration AWS Lambda trigger.

Verifies the authentication challenge response.

Trait Implementations

impl Default for LambdaConfigType
[src]

[src]

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

impl Debug for LambdaConfigType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LambdaConfigType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations