Struct rusoto_cognito_idp::ConfirmDeviceRequest[][src]

pub struct ConfirmDeviceRequest {
    pub access_token: String,
    pub device_key: String,
    pub device_name: Option<String>,
    pub device_secret_verifier_config: Option<DeviceSecretVerifierConfigType>,
}

Confirms the device request.

Fields

The access token.

The device key.

The device name.

The configuration of the device secret verifier.

Trait Implementations

impl Default for ConfirmDeviceRequest
[src]

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

impl Debug for ConfirmDeviceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfirmDeviceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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