GetUserAuthenticationMode constructor

const GetUserAuthenticationMode({
  1. required Input<int> passwordCount,
  2. required Input<String> type,
})

Creates a new GetUserAuthenticationMode. passwordCount Number of passwords belonging to the user if type is set to password. type Type of authentication configured.

Implementation

const GetUserAuthenticationMode({
  required this.passwordCount,
  required this.type,
});