in integTests/validateEmailTest/lib/validate_email_test-stack.ts [5:17]
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new bootstrapKit.ValidateEmail(
this,
"TestEmailValidationFailingShouldRollbackProperly",
{
// Will bounce with 550 SMTP error equivalent to what a an email provider that does not support address aliases
// @see https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-simulator.html for more details
email: "bounce@simulator.amazonses.com",
timeout: cdk.Duration.seconds(30)
}
);
}