Struct rusoto_cognito_idp::AuthEventType[][src]

pub struct AuthEventType {
    pub challenge_responses: Option<Vec<ChallengeResponseType>>,
    pub creation_date: Option<f64>,
    pub event_context_data: Option<EventContextDataType>,
    pub event_feedback: Option<EventFeedbackType>,
    pub event_id: Option<String>,
    pub event_response: Option<String>,
    pub event_risk: Option<EventRiskType>,
    pub event_type: Option<String>,
}

The authentication event type.

Fields

The challenge responses.

The creation date

The user context data captured at the time of an event request. It provides additional information about the client from which event the request is received.

A flag specifying the user feedback captured at the time of an event request is good or bad.

The event ID.

The event response.

The event risk.

The event type.

Trait Implementations

impl Default for AuthEventType
[src]

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

impl Debug for AuthEventType
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthEventType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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