Skip to main content

SessionConfiguration

Properties

NameTypeDescriptionNotes
MaxIdleTimeInt32The maximum time in minutes a session can be idle.[optional]
RememberMeBooleanDenotes if 'remember me' is enabled.[optional] [default to $false]
MaxSessionTimeInt32The maximum allowable session time in minutes.[optional]

Examples

  • Prepare the resource
$SessionConfiguration = Initialize-PSSailpoint.V3SessionConfiguration  -MaxIdleTime 15 `
-RememberMe true `
-MaxSessionTime 45
  • Convert the resource to JSON
$SessionConfiguration | ConvertTo-JSON

[Back to top]