Show / Hide Table of Contents

Interface ILazyListValueOptions

Options for creating a lazy list token.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILazyListValueOptions
Syntax (vb)
Public Interface ILazyListValueOptions
Remarks

ExampleMetadata: fixture=_generated

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
            };

Synopsis

Properties

DisplayHint

Use the given name as a display hint.

OmitEmpty

If the produced list is empty, return 'undefined' instead.

Properties

DisplayHint

Use the given name as a display hint.

string? DisplayHint { get; }
Property Value

string

Remarks

Default: - No hint

OmitEmpty

If the produced list is empty, return 'undefined' instead.

bool? OmitEmpty { get; }
Property Value

bool?

Remarks

Default: false

Back to top Generated by DocFX