> ## 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: LazyListValueOptions

> CDKTN Core API Reference for LazyListValueOptions in Typescript.

Options for creating a lazy list token.

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

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

const lazyListValueOptions: LazyListValueOptions = { ... }
```

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

| **Name**                                                                                | **Type**             | **Description**                                            |
| --------------------------------------------------------------------------------------- | -------------------- | ---------------------------------------------------------- |
| <code><a href="#cdktn.LazyListValueOptions.property.displayHint">displayHint</a></code> | <code>string</code>  | Use the given name as a display hint.                      |
| <code><a href="#cdktn.LazyListValueOptions.property.omitEmpty">omitEmpty</a></code>     | <code>boolean</code> | If the produced list is empty, return 'undefined' instead. |

***

### `displayHint`<sup>Optional</sup> <a name="displayHint" id="cdktn.LazyListValueOptions.property.displayHint" />

```typescript theme={null}
public readonly displayHint: string;
```

* *Type:* string
* *Default:* No hint

Use the given name as a display hint.

***

### `omitEmpty`<sup>Optional</sup> <a name="omitEmpty" id="cdktn.LazyListValueOptions.property.omitEmpty" />

```typescript theme={null}
public readonly omitEmpty: boolean;
```

* *Type:* boolean
* *Default:* false

If the produced list is empty, return 'undefined' instead.

***
