Harris Newsteder
04/12/2022, 1:52 PMFrank
Frank
new Auth(this, "Auth", {
cognito: {
mfa: cognito.Mfa.OPTIONAL or cognito.Mfa.REQUIRED
},
});
and if u r using SST v1.x, u can enable it like this
new Auth(this, "Auth", {
cdk: {
userPool: {
mfa: cognito.Mfa.OPTIONAL or cognito.Mfa.REQUIRED
},
},
});
Frank