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

Method locked

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

362 * locked.
363 */
364 public get locked() {
365 if (this._locked) {
366 return true;
367 }
368
369 if (this.scope && this.scope.node.locked) {
370 return true;
371 }
372
373 return false;
374 }
375
376 /**
377 * 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