Skip to main content
Options for creating a lazy list token.

Initializer

import { LazyListValueOptions } from 'cdktn'

const lazyListValueOptions: LazyListValueOptions = { ... }

Properties

NameTypeDescription
displayHintstringUse the given name as a display hint.
omitEmptybooleanIf the produced list is empty, return ‘undefined’ instead.

displayHintOptional

public readonly displayHint: string;
  • Type: string
  • Default: No hint
Use the given name as a display hint.

omitEmptyOptional

public readonly omitEmpty: boolean;
  • Type: boolean
  • Default: false
If the produced list is empty, return ‘undefined’ instead.