Interface IStageSynthesisOptions
Options for assembly synthesis.
public interface IStageSynthesisOptions
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var stageSynthesisOptions = new StageSynthesisOptions {
Force = false,
SkipValidation = false,
ValidateOnSynthesis = false
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Force
Force a re-synth, even if the stage has already been synthesized.
bool? Force { get; }
Property Value
- bool?
Remarks
This is used by tests to allow for incremental verification of the output. Do not use in production.
Default: false
SkipValidation
Should we skip construct validation.
bool? SkipValidation { get; }
Property Value
- bool?
Remarks
Default: - false
ValidateOnSynthesis
Whether the stack should be validated after synthesis to check for error metadata.
bool? ValidateOnSynthesis { get; }
Property Value
- bool?
Remarks
Default: - false