Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/SessionConfiguration.md
2025-05-07 14:37:48 +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
session-configuration SessionConfiguration SessionConfiguration SessionConfiguration powershellsdk
powershell
PowerShell
sdk
SessionConfiguration
SessionConfiguration
/tools/sdk/powershell/v3/models/session-configuration
SDK
Software Development Kit
SessionConfiguration
SessionConfiguration

SessionConfiguration

Properties

Name Type Description Notes
MaxIdleTime Int32 The maximum time in minutes a session can be idle. [optional]
RememberMe Boolean Denotes if 'remember me' is enabled. [optional] [default to $false]
MaxSessionTime Int32 The maximum allowable session time in minutes. [optional]

Examples

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

[Back to top]