Class: Aws::CognitoIdentityProvider::Types::DeviceSecretVerifierConfigType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeviceSecretVerifierConfigType
- 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].
This data type is a request parameter of [ConfirmDevice].
[1]: docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-device-tracking.html#user-pools-remembered-devices-getting-a-device-key [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_ConfirmDevice.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password_verifier ⇒ String
A password verifier for a user’s device.
-
#salt ⇒ String
The salt that you want to use in SRP authentication with the user’s device.
Instance Attribute Details
#password_verifier ⇒ String
A password verifier for a user’s device. Used in SRP authentication.
5415 5416 5417 5418 5419 5420 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5415 class DeviceSecretVerifierConfigType < Struct.new( :password_verifier, :salt) SENSITIVE = [] include Aws::Structure end |
#salt ⇒ String
The salt that you want to use in SRP authentication with the user’s device.
5415 5416 5417 5418 5419 5420 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5415 class DeviceSecretVerifierConfigType < Struct.new( :password_verifier, :salt) SENSITIVE = [] include Aws::Structure end |