Show / Hide Table of Contents

Interface IResolveChangeContextOptions

Options that can be changed while doing a recursive resolve.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IResolveChangeContextOptions
Syntax (vb)
Public Interface IResolveChangeContextOptions
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 resolveChangeContextOptions = new ResolveChangeContextOptions {
                AllowIntrinsicKeys = false,
                RemoveEmpty = false
            };

Synopsis

Properties

AllowIntrinsicKeys

Change the 'allowIntrinsicKeys' option.

RemoveEmpty

Whether to remove undefined elements from arrays and objects when resolving.

Properties

AllowIntrinsicKeys

Change the 'allowIntrinsicKeys' option.

bool? AllowIntrinsicKeys { get; }
Property Value

bool?

Remarks

Default: - Unchanged

RemoveEmpty

Whether to remove undefined elements from arrays and objects when resolving.

bool? RemoveEmpty { get; }
Property Value

bool?

Remarks

Default: - Unchanged

Back to top Generated by DocFX