Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/LockoutConfiguration.md
2025-04-14 20:23:46 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-lockout-configuration LockoutConfiguration LockoutConfiguration LockoutConfiguration pythonsdk
python
Python
sdk
LockoutConfiguration
V2024LockoutConfiguration
/tools/sdk/python/v2024/models/lockout-configuration
SDK
Software Development Kit
LockoutConfiguration
V2024LockoutConfiguration

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.v2024.models.lockout_configuration import LockoutConfiguration

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

[Back to top]