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