Skip to main content
Options for creating lazy untyped tokens.

Initializer

using Io.Cdktn;

new LazyAnyValueOptions {
    string DisplayHint = null,
    bool OmitEmptyArray = null
};

Properties

NameTypeDescription
DisplayHintstringUse the given name as a display hint.
OmitEmptyArrayboolIf the produced value is an array and it is empty, return ‘undefined’ instead.

DisplayHintOptional

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

OmitEmptyArrayOptional

public bool OmitEmptyArray { get; set; }
  • Type: bool
  • Default: false
If the produced value is an array and it is empty, return ‘undefined’ instead.