...
- 20 characters
- all numbers and capitol letters (A-Z)
- no white spaces
- found on aws site can be between 16 to 32 characters, but I think I misinterpreted this
Needs Pattern = yes
Code Block |
---|
Suggested Regular Expression = "^[0-9A-Z]{20}$" |
secretKey
Logical Rules
- letters, both lower and upper case
- A to Z
- numbers
- random characters like + and /
- 40 characters long
- no white spaces
Needs Pattern = yes
Code Block |
---|
Suggested Regular Expression = "^\\S{40}$" |
securityToken
Logical Rules
- found two examples
- isfakeSessionToken
- AQoEXAMPLEH4aoAH0gNCAPyJxz4BlCFFxWNE1OPTgk5TthT+FvwqnKwRcOIfrRh3c/L
To6UDdyJwOOvEVPvLXCrrrUtdnniCEXAMPLE/IvU1dYUg2RVAJBanLiHb4IgRmpRV3z
rkuWJOgQs8IZZaIv2BXIa2R4OlgkBN9bkUDNCJiBeb/AXlzBBko7b15fjrBs2+cTQtp
Z3CYWFXG8C5zqx37wnOE49mRl/+OtkIKGO7fAE - looks like these can vary in length
- one word, no whitespace
- allow numbers, letters, and random characters
Needs Pattern = yes
Code Block |
---|
Suggested Regular Expression = "\\S+" |
bucket
Logical Rules
- naming rules for the buckets
- can contain lowercase letters, numbers, periods, underscores and dashes
- must start with a number or letter
- must be between 3 and 255 characters long
- must not be formatted as an ip address like 564.442.4.4
- ip issue not supported, tired several variations, including greedy
- the exact question is can it take x amount of characters and compare them against two semi-complex expressions
- having trouble finding example online
Needs Pattern = yes
Suggested Regular Expression
...