INPUT_OBJECT

InactiveLockoutConfigInput

Description

Specifies information about inactive lockout configuration.

link GraphQL Schema definition

  • input InactiveLockoutConfigInput {
  • # Specifies the number of inactive days after which a user will be locked.
  • inactivityDaysLimit: Int
  • # Specifies whether the inactive lockout feature is enabled.
  • isInactiveLockoutEnabled: Boolean
  • # Specifies whether locked users can unlock themselves using a password reset.
  • isSelfServiceUnlockEnabled: Boolean
  • # Specifies whether warning emails are sent to user accounts pending lockout due
  • # to inactivity.
  • isWarningEmailEnabled: Boolean
  • # Specifies the number of days before lockout to send warning emails.
  • numDaysBeforeWarningEmail: Int
  • }