Struct rusoto_cognito_idp::DeviceConfigurationType[][src]

pub struct DeviceConfigurationType {
    pub challenge_required_on_new_device: Option<bool>,
    pub device_only_remembered_on_user_prompt: Option<bool>,
}

The configuration for the user pool's device tracking.

Fields

Indicates whether a challenge is required on a new device. Only applicable to a new device.

If true, a device is only remembered on user prompt.

Trait Implementations

impl Default for DeviceConfigurationType
[src]

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

impl Debug for DeviceConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for DeviceConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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