Complexity settings
| Name | Type | Description | Notes |
|---|---|---|---|
| Dictionary | PasswordDictionary | [optional] | |
| ExcludeAttributes | List<string> | The User profile attributes whose values must be excluded from the password: currently only supports `firstName` and `lastName` | [optional] |
| ExcludeUsername | bool | Indicates if the Username must be excluded from the password | [optional] [default to true] |
| MinLength | int | Minimum password length | [optional] [default to 8] |
| MinLowerCase | int | Indicates if a password must contain at least one lower case letter: `0` indicates no, `1` indicates yes | [optional] [default to 1] |
| MinNumber | int | Indicates if a password must contain at least one number: `0` indicates no, `1` indicates yes | [optional] [default to 1] |
| MinSymbol | int | Indicates if a password must contain at least one symbol (For example: !@#$%^&*): `0` indicates no, `1` indicates yes | [optional] [default to 1] |
| MinUpperCase | int | Indicates if a password must contain at least one upper case letter: `0` indicates no, `1` indicates yes | [optional] [default to 1] |
| OelStatement | string | <x-lifecycle-container><x-lifecycle class="ea"></x-lifecycle> <x-lifecycle class="oie"></x-lifecycle></x-lifecycle-container>Use an Expression Language expression to block a word from being used in a password. You can only block one word per expression. Use the `OR` operator to connect multiple expressions to block multiple words. | [optional] |