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

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

Overview

Note:

When making an API call, you may pass DeviceSecretVerifierConfigType data as a hash:

{
  password_verifier: "StringType",
  salt: "StringType",
}

The device verifier against which it is authenticated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#password_verifierString

The password verifier.

Returns:

  • (String)


4786
4787
4788
4789
4790
4791
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4786

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

#saltString

Returns:

  • (String)


4786
4787
4788
4789
4790
4791
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4786

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