Table of Contents

Class StageSynthesisOptions

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Options for assembly synthesis.

public class StageSynthesisOptions : IStageSynthesisOptions
Inheritance
StageSynthesisOptions
Implements
Inherited Members

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

Constructors

StageSynthesisOptions()

public StageSynthesisOptions()

Properties

Force

Force a re-synth, even if the stage has already been synthesized.

public bool? Force { get; set; }

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.

public bool? SkipValidation { get; set; }

Property Value

bool?

Remarks

Default: - false

ValidateOnSynthesis

Whether the stack should be validated after synthesis to check for error metadata.

public bool? ValidateOnSynthesis { get; set; }

Property Value

bool?

Remarks

Default: - false