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

Method locked

src/construct.ts:354–364  ·  view source on GitHub ↗

* Returns true if this construct or the scopes in which it is defined are * locked.

()

Source from the content-addressed store, hash-verified

352 * locked.
353 */
354 public get locked() {
355 if (this._locked) {
356 return true;
357 }
358
359 if (this.scope && this.scope.node.locked) {
360 return true;
361 }
362
363 return false;
364 }
365
366 /**
367 * Add an ordering dependency on a Dependable (a construct or set of constructs)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected