Class LazyListValueOptions
Options for creating a lazy list token.
public class LazyListValueOptions : ILazyListValueOptions
- Inheritance
-
LazyListValueOptions
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var lazyListValueOptions = new LazyListValueOptions {
DisplayHint = "displayHint",
OmitEmpty = false
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
LazyListValueOptions()
public LazyListValueOptions()
Properties
DisplayHint
Use the given name as a display hint.
public string? DisplayHint { get; set; }
Property Value
Remarks
Default: - No hint
OmitEmpty
If the produced list is empty, return 'undefined' instead.
public bool? OmitEmpty { get; set; }
Property Value
- bool?
Remarks
Default: false