Class: Aws::CognitoIdentityProvider::Types::DeviceSecretVerifierConfigType

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

A Secure Remote Password (SRP) value that your application generates when you register a user's device. For more information, see Getting a device key.

This data type is a request parameter of ConfirmDevice.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#password_verifierString

A password verifier for a user's device. Used in SRP authentication.

Returns:

  • (String)


5415
5416
5417
5418
5419
5420
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 5415

class DeviceSecretVerifierConfigType < Struct.new(
  :password_verifier,
  :salt)
  SENSITIVE = []
  include Aws::Structure
end

#saltString

The salt that you want to use in SRP authentication with the user's device.

Returns:

  • (String)


5415
5416
5417
5418
5419
5420
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 5415

class DeviceSecretVerifierConfigType < Struct.new(
  :password_verifier,
  :salt)
  SENSITIVE = []
  include Aws::Structure
end