UserAuthenticationMode constructor

const UserAuthenticationMode({
  1. Input<int?>? passwordCount,
  2. Input<List<String>?>? passwords,
  3. required Input<String> type,
})

Creates a new UserAuthenticationMode. passwordCount Number of passwords belonging to the user if type is set to password. passwords Set of passwords used for authentication if type is set to password. You can create up to two passwords for each user. type Specifies the authentication type. Valid values are: password or iam.

Implementation

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