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

Initializer

import io.cdktn.cdktn.LazyListValueOptions;

LazyListValueOptions.builder()
//  .displayHint(java.lang.String)
//  .omitEmpty(java.lang.Boolean)
    .build();

Properties

NameTypeDescription
displayHintjava.lang.StringUse the given name as a display hint.
omitEmptyjava.lang.BooleanIf the produced list is empty, return ‘undefined’ instead.

displayHintOptional

public java.lang.String getDisplayHint();
  • Type: java.lang.String
  • Default: No hint
Use the given name as a display hint.

omitEmptyOptional

public java.lang.Boolean getOmitEmpty();
  • Type: java.lang.Boolean
  • Default: false
If the produced list is empty, return ‘undefined’ instead.