LockoutConfiguration
Properties
Name | Type | Description | Notes |
---|---|---|---|
maximum_attempts | int | The maximum attempts allowed before lockout occurs. | [optional] |
lockout_duration | int | The total time in minutes a user will be locked out. | [optional] |
lockout_window | int | A 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
)