import { Construct } from 'constructs';
import { Stack, Duration } from 'aws-cdk-lib';
import * as dsf from '@cdklabs/aws-data-solutions-framework';
import { Vpc } from 'aws-cdk-lib/aws-ec2';
import { Secret } from 'aws-cdk-lib/aws-secretsmanager';

class MyStack extends Stack {
  constructor(scope: Construct, id: string) {
    super(scope, id);

    /// here
  }
}