This is a blank project for CDK development with TypeScript.
The cdk.json file tells the CDK Toolkit how to execute your app.
npm run buildcompile typescript to jsnpm run watchwatch for changes and compilenpm run testperform the jest unit testsnpx cdk deploydeploy this stack to your default AWS account/regionnpx cdk diffcompare deployed stack with current statenpx cdk synthemits the synthesized CloudFormation template
npx cdk init app --language typescriptnpm i @aws-sdk/client-s3 @aws-sdk/lib-storage fast-csv ssh2-sftp-client yamlnpm i --save-dev tsxmkdir srctouch src/upload.ts src/download.ts src/demultiplex.ts
Create a SSH asymmetric key pairing with the following:
ssh-keygen -t rsa -b 2048 -f sftp_keyYou will output sftp_key for your private key and sftp_key.pub for your public key.