Skip to main content

LockoutConfiguration

Properties

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

Examples

  • Prepare the resource
$LockoutConfiguration = Initialize-PSSailpoint.V3LockoutConfiguration  -MaximumAttempts 5 `
-LockoutDuration 15 `
-LockoutWindow 5
  • Convert the resource to JSON
$LockoutConfiguration | ConvertTo-JSON

[Back to top]