Documentation Index
Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Initializers
import { LazyBase } from 'cdktn'
new LazyBase()
Methods
| Name | Description |
|---|
addPostProcessor | No description. |
resolve | Produce the Token’s value at resolution time. |
toJSON | Turn this Token into JSON. |
toString | Return a string representation of this resolvable object. |
addPostProcessor
public addPostProcessor(postProcessor: IPostProcessor): void
postProcessorRequired
resolve
public resolve(context: IResolveContext): any
Produce the Token’s value at resolution time.
contextRequired
toJSON
Turn this Token into JSON.
Called automatically when JSON.stringify() is called on a Token.
toString
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Properties
| Name | Type | Description |
|---|
creationStack | string[] | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
creationStackRequired
public readonly creationStack: string[];
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.