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

Initializer

using Io.Cdktn;

new LazyListValueOptions {
    string DisplayHint = null,
    bool OmitEmpty = null
};

Properties

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

DisplayHintOptional

public string DisplayHint { get; set; }
  • Type: string
  • Default: No hint
Use the given name as a display hint.

OmitEmptyOptional

public bool OmitEmpty { get; set; }
  • Type: bool
  • Default: false
If the produced list is empty, return ‘undefined’ instead.