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

> CDKTN Core API Reference for LazyAnyValueOptions in Python.

Options for creating lazy untyped tokens.

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

```python theme={null}
import cdktn

cdktn.LazyAnyValueOptions(
  display_hint: str = None,
  omit_empty_array: bool = None
)
```

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

| **Name**                                                                                         | **Type**          | **Description**                                                                |
| ------------------------------------------------------------------------------------------------ | ----------------- | ------------------------------------------------------------------------------ |
| <code><a href="#cdktn.LazyAnyValueOptions.property.displayHint">display\_hint</a></code>         | <code>str</code>  | Use the given name as a display hint.                                          |
| <code><a href="#cdktn.LazyAnyValueOptions.property.omitEmptyArray">omit\_empty\_array</a></code> | <code>bool</code> | If the produced value is an array and it is empty, return 'undefined' instead. |

***

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

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

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

Use the given name as a display hint.

***

### `omit_empty_array`<sup>Optional</sup> <a name="omit_empty_array" id="cdktn.LazyAnyValueOptions.property.omitEmptyArray" />

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

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

If the produced value is an array and it is empty, return 'undefined' instead.

***
