Skip to content
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.

neilkuan/cdk-demo-construct

Repository files navigation

NPM version PyPI version Release

Downloads npm PyPI

Welcome to cdk-demo-construct

The Constructs for the CDK Demo.

To Use

import * as ec2 from '@aws-cdk/aws-ec2';
import * as cdk from '@aws-cdk/core';
import { AlarmInstance } from 'cdk-demo-construct';
const app = new cdk.App();
const stack = new cdk.Stack(app, 'integ-default');
const vpc = new ec2.Vpc(stack, 'VPC');
new AlarmInstance(stack, 'AlarmInstance', { vpc, notifyMail: ['mail@example.com'] });