AccountPasswordPolicy
Source:
src/AWS/IAM/AccountPasswordPolicy.ts
The singleton IAM account password policy.
AccountPasswordPolicy manages the account-wide password requirements that
apply to IAM users with console passwords.
Managing Password Rules
Section titled “Managing Password Rules”const policy = yield* AccountPasswordPolicy("PasswordPolicy", { MinimumPasswordLength: 16, RequireSymbols: true, RequireNumbers: true, RequireUppercaseCharacters: true, RequireLowercaseCharacters: true, AllowUsersToChangePassword: true,});