Struct rusoto_cognito_idp::ContextDataType[][src]

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 containing device fingerprinting details, collected using the Amazon Cognito context data collection library.

HttpHeaders received on your server in same order.

Source IP address of your user.

Your server endpoint where this API is invoked.

Your server path where this API is invoked.

Trait Implementations

impl Default for ContextDataType
[src]

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

impl Debug for ContextDataType
[src]

Formats the value using the given formatter. Read more

impl Clone for ContextDataType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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