This is a page to store notes on AWS CDK while I work on personal projects.

Initial Base Application Template

This is an initial base application template which is a fresh AWS Cloud Development Kit (CDK) app written in Typescript. It can be found at the following URL:
https://github.com/petesql/aws-cdk-initial-stack-template.

aws-cdk-initial-stack-template/lib/aws-cdk-initial-stack-template-stack.ts/

import * as cdk from '@aws-cdk/core';

export class AwsCdkInitialStackTemplateStack extends cdk.Stack {
  constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
    super(scope, id, props);

    // The code that defines your stack goes here
  }
}

AWS Data Platform

URL: https://github.com/petesql/aws-data-platform
Description: My own AWS CDK (Typescript) Data Platform. Single-Stack App space for ongoing development and personal builds so I can test database features/issues.
Includes: VPC, IAM, S3, EC2, SSM, RDS, Redshift, Glue, Lambda, Makefile & Python.