| 691 | * For root constructs, the id is optional. |
| 692 | */ |
| 693 | export class RootConstruct extends Construct { |
| 694 | /** |
| 695 | * Creates a new root construct node. |
| 696 | * |
| 697 | * @param id The scoped construct ID. Must be unique amongst siblings. If |
| 698 | * the ID includes a path separator (`/`) or a newline, then it will be |
| 699 | * replaced by double dash `--`. |
| 700 | */ |
| 701 | constructor(id?: string) { |
| 702 | super(undefined as any, id ?? ''); |
| 703 | } |
| 704 | } |
nothing calls this directly
no outgoing calls
no test coverage detected