UNPKG

cdktg

Version:
10 lines (9 loc) 317 B
import { Construct } from "constructs"; import { TrustBoundary } from ".."; export interface SecurityGroupProps { readonly description?: string; readonly tags?: string[]; } export declare class SecurityGroup extends TrustBoundary { constructor(scope: Construct, id: string, props?: SecurityGroupProps); }