Class ResolveChangeContextOptions
Options that can be changed while doing a recursive resolve.
Inheritance
System.Object
ResolveChangeContextOptions
Implements
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ResolveChangeContextOptions : Object, IResolveChangeContextOptions
Syntax (vb)
Public Class ResolveChangeContextOptions
Inherits Object
Implements 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
Constructors
ResolveChangeContextOptions() |
Properties
AllowIntrinsicKeys | Change the 'allowIntrinsicKeys' option. |
RemoveEmpty | Whether to remove undefined elements from arrays and objects when resolving. |
Constructors
ResolveChangeContextOptions()
public ResolveChangeContextOptions()
Properties
AllowIntrinsicKeys
Change the 'allowIntrinsicKeys' option.
public Nullable<bool> AllowIntrinsicKeys { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: - Unchanged
RemoveEmpty
Whether to remove undefined elements from arrays and objects when resolving.
public Nullable<bool> RemoveEmpty { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: - Unchanged