This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as cdk from '@aws-cdk/core'; | |
| import * as ec2 from '@aws-cdk/aws-ec2'; | |
| import * as iam from '@aws-cdk/aws-iam'; | |
| import { InfraNestedStackProps, InfraNestedStack } from '@infra/common'; | |
| export interface NetworkStackProps extends cdk.StackProps { | |
| // Define construct properties here | |
| } | |
| export class NetworkStack extends cdk.Stack { |
OlderNewer