OBJECT

UserSessionManagementConfig

Description

Specifies information about the session management configuration for the user account.

link GraphQL Schema definition

  • type UserSessionManagementConfig {
  • # Specifies whether the user has enforced a limit on the maximum number of
  • # sessions. The value is true if the user has enforced a limit on the maximum
  • # number of sessions and false otherwise.
  • isConcurrentSessionLimitationEnabled: Boolean!
  • # Integer value indicating the maximum number of sessions set by the user.
  • maxConcurrentSessions: Int!
  • # Specifies whether the user has enforced a session timeout when the maximum time
  • # limit on inactivity is reached.
  • isInactivityTimeoutEnabled: Boolean!
  • # Integer value specifying the number of seconds before the session logs out if
  • # the user is inactive.
  • inactivityTimeoutInSeconds: Long!
  • # Integer value, in seconds, specifying maximum value for inactivity timeout
  • # configuration.
  • inactivityTimeoutInSecondsMaxLimit: Long!
  • # Integer value , in seconds, specifying minimum value for inactivity timeout
  • # configuration.
  • inactivityTimeoutInSecondsMinLimit: Long!
  • # Integer value specifying maximum value for concurrent session limit
  • # configuration.
  • maxConcurrentSessionsMaxLimit: Int!
  • # Indicates the number of seconds before the session logs out.
  • sessionTimeoutInSeconds: Long!
  • # Minimum value, in seconds, for session timeout configuration.
  • sessionTimeoutInSecondsMinLimit: Long!
  • # Maximum value, in seconds, for session timeout configuration.
  • sessionTimeoutInSecondsMaxLimit: Long!
  • # Specifies whether the Global Organization has enforced it's policy.
  • isGlobalPolicyEnforced: Boolean!
  • }