constructor()

in Infra/lib/stack/UserPoolStack.ts [15:23]


    constructor(scope: Construct, id: string) {
        super(scope, id);
        this.userPool = new cognito.UserPool(this, "UserPool", {
            selfSignUpEnabled: false,
            autoVerify: {
                email: true,
            },
        });
    }