This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from 'aws-cdk-lib'; | |
import * as eventbridge from 'aws-cdk-lib/aws-events'; | |
import * as sns from 'aws-cdk-lib/aws-sns'; | |
import * as iam from 'aws-cdk-lib/aws-iam'; | |
export class EventBridgeStack extends cdk.Stack { | |
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
// Create EventBridge bus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
logging: | |
level: INFO | |
loggers: | |
"io.ebean.SQL": TRACE |