Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class PoolsAndTriggersStack extends Stack {

constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);
this.createFunction("autoConfirmHandler");
this.createFunction("AutoConfirmHandler");
this.poolsAndTriggersBase.outputs(this);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

import { describe, test, expect } from "vitest";
import { PreSignUpHandler } from "../lib/stack.autoConfirmHandler";
import { PreSignUpHandler } from "../lib/stack.AutoConfirmHandler";
import type { UserRepository } from "../lib/user-repository";
import type { PreSignUpTriggerEvent } from "aws-lambda";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const greeting = new ScenarioOutput(
"greeting",
(/** @type {State} */ state) => `This demo will populate some users into the \
database created as part of the "${state.stackName}" stack. \
Then the autoConfirmHandler will be linked to the PreSignUp \
Then the AutoConfirmHandler will be linked to the PreSignUp \
trigger from Cognito. Finally, you will choose a user to sign up.`,
{ skipWhen: skipWhenErrors },
);
Expand Down