MCPcopy Create free account
hub / github.com/aws/constructs / RootConstruct

Class RootConstruct

src/construct.ts:682–693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

680 * For root constructs, the id is optional.
681 */
682export class RootConstruct extends Construct {
683 /**
684 * Creates a new root construct node.
685 *
686 * @param id The scoped construct ID. Must be unique amongst siblings. If
687 * the ID includes a path separator (`/`), then it will be replaced by double
688 * dash `--`.
689 */
690 constructor(id?: string) {
691 super(undefined as any, id ?? '');
692 }
693}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected