Package software.amazon.awscdk
Interface LazyListValueOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LazyListValueOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:55.827Z")
@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.*; LazyListValueOptions lazyListValueOptions = LazyListValueOptions.builder() .displayHint("displayHint") .omitEmpty(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLazyListValueOptions
static final class
An implementation forLazyListValueOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic LazyListValueOptions.Builder
builder()
default String
Use the given name as a display hint.default Boolean
If the produced list is empty, return 'undefined' instead.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayHint
Use the given name as a display hint.Default: - No hint
-
getOmitEmpty
If the produced list is empty, return 'undefined' instead.Default: false
-
builder
- Returns:
- a
LazyListValueOptions.Builder
ofLazyListValueOptions
-