[][src]Struct rusoto_cognito_idp::ContextDataType

pub struct ContextDataType {
    pub encoded_data: Option<String>,
    pub http_headers: Vec<HttpHeader>,
    pub ip_address: String,
    pub server_name: String,
    pub server_path: String,
}

Contextual user data type used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.

Fields

encoded_data: Option<String>

Encoded data containing device fingerprinting details, collected using the Amazon Cognito context data collection library.

http_headers: Vec<HttpHeader>

HttpHeaders received on your server in same order.

ip_address: String

Source IP address of your user.

server_name: String

Your server endpoint where this API is invoked.

server_path: String

Your server path where this API is invoked.

Trait Implementations

impl Clone for ContextDataType[src]

impl Debug for ContextDataType[src]

impl Default for ContextDataType[src]

impl PartialEq<ContextDataType> for ContextDataType[src]

impl Serialize for ContextDataType[src]

impl StructuralPartialEq for ContextDataType[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> 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.