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.global_tenant_security_settings.models.lockoutconfiguration import Lockoutconfiguration
lockoutconfiguration = Lockoutconfiguration(
maximum_attempts=5,
lockout_duration=15,
lockout_window=5
)