Skip to main content

LockoutConfiguration

Properties

NameTypeDescriptionNotes
maximum_attemptsintThe maximum attempts allowed before lockout occurs.[optional]
lockout_durationintThe total time in minutes a user will be locked out.[optional]
lockout_windowintA rolling window where authentication attempts in a series count towards the maximum before lockout occurs.[optional]
}

Example

from sailpoint.v3.models.lockout_configuration import LockoutConfiguration

lockout_configuration = LockoutConfiguration(
maximum_attempts=5,
lockout_duration=15,
lockout_window=5
)

[Back to top]