Package software.amazon.awscdk.core
Interface LazyListValueOptions
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- LazyListValueOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:29:55.086Z")
@Stability(Stable)
public interface LazyListValueOptions
extends software.amazon.jsii.JsiiSerializable
Options for creating a lazy list token.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.core.*;
 LazyListValueOptions lazyListValueOptions = LazyListValueOptions.builder()
         .displayHint("displayHint")
         .omitEmpty(false)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLazyListValueOptionsstatic final classAn implementation forLazyListValueOptions
- 
Method SummaryModifier and TypeMethodDescriptionstatic LazyListValueOptions.Builderbuilder()default StringUse the given name as a display hint.default BooleanIf the produced list is empty, return 'undefined' instead.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDisplayHintUse the given name as a display hint.Default: - No hint 
- 
getOmitEmptyIf the produced list is empty, return 'undefined' instead.Default: false 
- 
builder- Returns:
- a LazyListValueOptions.BuilderofLazyListValueOptions
 
 
-