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

Method locked

src/construct.ts:351–361  ·  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

349 * locked.
350 */
351 public get locked() {
352 if (this._locked) {
353 return true;
354 }
355
356 if (this.scope && this.scope.node.locked) {
357 return true;
358 }
359
360 return false;
361 }
362
363 /**
364 * 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