Struct rusoto_cognito_idp::AdminUpdateDeviceStatusRequest[][src]

pub struct AdminUpdateDeviceStatusRequest {
    pub device_key: String,
    pub device_remembered_status: Option<String>,
    pub user_pool_id: String,
    pub username: String,
}

The request to update the device status, as an administrator.

Fields

The device key.

The status indicating whether a device has been remembered or not.

The user pool ID.

The user name.

Trait Implementations

impl Default for AdminUpdateDeviceStatusRequest
[src]

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

impl Debug for AdminUpdateDeviceStatusRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AdminUpdateDeviceStatusRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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