Table of Contents

Class LazyAnyValueOptions

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Options for creating lazy untyped tokens.

public class LazyAnyValueOptions : ILazyAnyValueOptions
Inheritance
LazyAnyValueOptions
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 lazyAnyValueOptions = new LazyAnyValueOptions {
                DisplayHint = "displayHint",
                OmitEmptyArray = false
            };

Remarks

ExampleMetadata: fixture=_generated

Constructors

LazyAnyValueOptions()

public LazyAnyValueOptions()

Properties

DisplayHint

Use the given name as a display hint.

public string? DisplayHint { get; set; }

Property Value

string

Remarks

Default: - No hint

OmitEmptyArray

If the produced value is an array and it is empty, return 'undefined' instead.

public bool? OmitEmptyArray { get; set; }

Property Value

bool?

Remarks

Default: false