Show / Hide Table of Contents

Class LazyAnyValueOptions

Options for creating lazy untyped tokens.

Inheritance
object
LazyAnyValueOptions
Implements
ILazyAnyValueOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LazyAnyValueOptions : ILazyAnyValueOptions
Syntax (vb)
Public Class LazyAnyValueOptions Implements 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;

            var lazyAnyValueOptions = new LazyAnyValueOptions {
                DisplayHint = "displayHint",
                OmitEmptyArray = false
            };

Synopsis

Constructors

LazyAnyValueOptions()

Options for creating lazy untyped tokens.

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.

Constructors

LazyAnyValueOptions()

Options for creating lazy untyped tokens.

public LazyAnyValueOptions()
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 lazyAnyValueOptions = new LazyAnyValueOptions {
                DisplayHint = "displayHint",
                OmitEmptyArray = false
            };

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

Implements

ILazyAnyValueOptions
Back to top Generated by DocFX