cdktg
Version:
Agile Threat Modeling as Code
10 lines (9 loc) • 317 B
TypeScript
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);
}