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

> CDKTN Core API Reference for LazyAnyValueOptions in Typescript.

Options for creating lazy untyped tokens.

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

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

const lazyAnyValueOptions: LazyAnyValueOptions = { ... }
```

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

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

***

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

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

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

Use the given name as a display hint.

***

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

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

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

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

***
