GraphQL INPUT_OBJECT
CreateSecurityPolicyInput
Input for creation of security policy.
link Definition
- input CreateSecurityPolicyInput {
- # Name of the security policy.
- : String!
- # The clientId of the client the security policy belongs to.
- : Int!
- # Minimum password length required.
- : Int
- # Indicates if complex passwords are enforced.
- : Boolean
- # Number of days after which a password change is required.
- : Int
- # Number of previous passwords that cannot be reused.
- : Int
- # Indicates if the first password must be changed.
- : Boolean
- # Number of failed login attempts before account lockout.
- : Int
- # Duration of account lockout in minutes.
- : Int
- # Number of days after which inactive users are deactivated.
- : Int
- }