[][src]Struct rusoto_cognito_idp::AuthEventType

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

challenge_responses: Option<Vec<ChallengeResponseType>>

The challenge responses.

creation_date: Option<f64>

The creation date

event_context_data: Option<EventContextDataType>

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.

event_feedback: Option<EventFeedbackType>

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

event_id: Option<String>

The event ID.

event_response: Option<String>

The event response.

event_risk: Option<EventRiskType>

The event risk.

event_type: Option<String>

The event type.

Trait Implementations

impl Clone for AuthEventType[src]

impl Debug for AuthEventType[src]

impl Default for AuthEventType[src]

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

impl PartialEq<AuthEventType> for AuthEventType[src]

impl StructuralPartialEq for AuthEventType[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.