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

# Python: LazyListValueOptions

> CDKTN Core API Reference for LazyListValueOptions in Python.

Options for creating a lazy list token.

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

```python theme={null}
import cdktn

cdktn.LazyListValueOptions(
  display_hint: str = None,
  omit_empty: bool = None
)
```

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

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

***

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

```python theme={null}
display_hint: str
```

* *Type:* str
* *Default:* No hint

Use the given name as a display hint.

***

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

```python theme={null}
omit_empty: bool
```

* *Type:* bool
* *Default:* false

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

***
