constructor()

in infra/central/lib/infra-stack.ts [24:41]


  constructor(scope: Construct, id: string, props?: StackProps) {
    super(scope, id, props);

    const securityStack = new SecurityStack(this, "SecurityStack");

    const appStack = new AppStack(this, "AppStack", {securityStack: securityStack});

    new CfnOutput(this, "StateMachineArn", {
      value: appStack.stateMachine.stateMachineArn,
      description: "ARN of DataWorkFlow Step Function"
    });

    new CfnOutput(this, "StateMachineName", {
      value: appStack.stateMachine.stateMachineName,
      description: "Name of the DataWorkFlow Step Function"
    });

  }