Package software.amazon.awscdk
Interface LazyAnyValueOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LazyAnyValueOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:55.826Z")
@Stability(Stable)
public interface LazyAnyValueOptions
extends software.amazon.jsii.JsiiSerializable
Options for creating lazy untyped tokens.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; LazyAnyValueOptions lazyAnyValueOptions = LazyAnyValueOptions.builder() .displayHint("displayHint") .omitEmptyArray(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLazyAnyValueOptions
static final class
An implementation forLazyAnyValueOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic LazyAnyValueOptions.Builder
builder()
default String
Use the given name as a display hint.default Boolean
If the produced value is an array and it 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
-
getOmitEmptyArray
If the produced value is an array and it is empty, return 'undefined' instead.Default: false
-
builder
- Returns:
- a
LazyAnyValueOptions.Builder
ofLazyAnyValueOptions
-