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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-device-tracking.html#user-pools-remembered-devices-getting-a-device-key

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)


5311
5312
5313
5314
5315
5316
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5311

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)


5311
5312
5313
5314
5315
5316
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5311

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