interface StageSynthesisOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.StageSynthesisOptions |
![]() | software.amazon.awscdk.core.StageSynthesisOptions |
![]() | aws_cdk.core.StageSynthesisOptions |
![]() | @aws-cdk/core » StageSynthesisOptions |
Options for assembly synthesis.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
const stageSynthesisOptions: cdk.StageSynthesisOptions = {
force: false,
skipValidation: false,
validateOnSynthesis: false,
};
Properties
Name | Type | Description |
---|---|---|
force? | boolean | Force a re-synth, even if the stage has already been synthesized. |
skip | boolean | Should we skip construct validation. |
validate | boolean | Whether the stack should be validated after synthesis to check for error metadata. |
force?
Type:
boolean
(optional, default: false)
Force a re-synth, even if the stage has already been synthesized.
This is used by tests to allow for incremental verification of the output. Do not use in production.
skipValidation?
Type:
boolean
(optional, default: false)
Should we skip construct validation.
validateOnSynthesis?
Type:
boolean
(optional, default: false)
Whether the stack should be validated after synthesis to check for error metadata.