Show / Hide Table of Contents

Interface ILazyAnyValueOptions

Options for creating lazy untyped tokens.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface ILazyAnyValueOptions
Syntax (vb)
Public Interface ILazyAnyValueOptions
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;
LazyAnyValueOptions lazyAnyValueOptions = new LazyAnyValueOptions {
    DisplayHint = "displayHint",
    OmitEmptyArray = false
};

Synopsis

Properties

DisplayHint

Use the given name as a display hint.

OmitEmptyArray

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

Properties

DisplayHint

Use the given name as a display hint.

virtual string DisplayHint { get; }
Property Value

System.String

Remarks

Default: - No hint

OmitEmptyArray

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

virtual Nullable<bool> OmitEmptyArray { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: false

Back to top Generated by DocFX