INPUT_OBJECT

SetUserSessionManagementConfigInput

Description

Input information on the user's session management configuration.

link GraphQL Schema definition

  • input SetUserSessionManagementConfigInput {
  • # Indicates the number of seconds before the service account session logs out.
  • clientSessionTimeoutInSeconds: Long!
  • # Integer value specifying the number of seconds before the session logs out if
  • # the user is inactive.
  • inactivityTimeoutInSeconds: Long!
  • # 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!
  • # Specifies whether the user has enforced a session timeout when the maximum time
  • # limit on inactivity is reached.
  • isInactivityTimeoutEnabled: Boolean!
  • # Integer value indicating the maximum number of sessions set by the user.
  • maxConcurrentSessions: Int!
  • # Indicates the number of seconds before the session logs out.
  • sessionTimeoutInSeconds: Long!
  • }

link Require by