raindancers-network
Version:
Extensions to the ec2.Vpc Constructs
17 lines (16 loc) • 535 B
TypeScript
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import * as constructs from 'constructs';
export interface ESubnetGroup {
readonly name: string;
readonly subnetType: ec2.SubnetType;
readonly cidrMask: number;
}
export interface ESubnetGroupProps {
readonly name: string;
readonly subnetType: ec2.SubnetType;
readonly cidrMask: number;
}
export declare class SubnetGroup extends constructs.Construct {
subnet: ESubnetGroup;
constructor(scope: constructs.Construct, id: string, props: ESubnetGroupProps);
}