> ## 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.

# Typescript: LazyBase

> CDKTN Core API Reference for LazyBase in Typescript.

* *Implements:* <a href="#cdktn.IResolvable">IResolvable</a>

## Initializers <a name="Initializers" id="cdktn.LazyBase.Initializer" />

```typescript theme={null}
import { LazyBase } from 'cdktn'

new LazyBase()
```

| **Name** | **Type** | **Description** |
| -------- | -------- | --------------- |

***

## Methods <a name="Methods" id="Methods" />

| **Name**                                                                     | **Description**                                           |
| ---------------------------------------------------------------------------- | --------------------------------------------------------- |
| <code><a href="#cdktn.LazyBase.addPostProcessor">addPostProcessor</a></code> | *No description.*                                         |
| <code><a href="#cdktn.LazyBase.resolve">resolve</a></code>                   | Produce the Token's value at resolution time.             |
| <code><a href="#cdktn.LazyBase.toJSON">toJSON</a></code>                     | Turn this Token into JSON.                                |
| <code><a href="#cdktn.LazyBase.toString">toString</a></code>                 | Return a string representation of this resolvable object. |

***

### `addPostProcessor` <a name="addPostProcessor" id="cdktn.LazyBase.addPostProcessor" />

```typescript theme={null}
public addPostProcessor(postProcessor: IPostProcessor): void
```

#### `postProcessor`<sup>Required</sup> <a name="postProcessor" id="cdktn.LazyBase.addPostProcessor.parameter.postProcessor" />

* *Type:* <a href="#cdktn.IPostProcessor">IPostProcessor</a>

***

### `resolve` <a name="resolve" id="cdktn.LazyBase.resolve" />

```typescript theme={null}
public resolve(context: IResolveContext): any
```

Produce the Token's value at resolution time.

#### `context`<sup>Required</sup> <a name="context" id="cdktn.LazyBase.resolve.parameter.context" />

* *Type:* <a href="#cdktn.IResolveContext">IResolveContext</a>

***

### `toJSON` <a name="toJSON" id="cdktn.LazyBase.toJSON" />

```typescript theme={null}
public toJSON(): any
```

Turn this Token into JSON.

Called automatically when JSON.stringify() is called on a Token.

### `toString` <a name="toString" id="cdktn.LazyBase.toString" />

```typescript theme={null}
public toString(): string
```

Return a string representation of this resolvable object.

Returns a reversible string representation.

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                        | **Type**               | **Description**                                                                                  |
| ------------------------------------------------------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------ |
| <code><a href="#cdktn.LazyBase.property.creationStack">creationStack</a></code> | <code>string\[]</code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |

***

### `creationStack`<sup>Required</sup> <a name="creationStack" id="cdktn.LazyBase.property.creationStack" />

```typescript theme={null}
public readonly creationStack: string[];
```

* *Type:* 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.

***
