Interface StageSynthesisOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
StageSynthesisOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:01.664Z") @Stability(Stable) public interface StageSynthesisOptions extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.*;
 StageSynthesisOptions stageSynthesisOptions = StageSynthesisOptions.builder()
         .force(false)
         .skipValidation(false)
         .validateOnSynthesis(false)
         .build();
 
  • Method Details

    • getForce

      @Stability(Stable) @Nullable default Boolean getForce()
      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.

      Default: false

    • getSkipValidation

      @Stability(Stable) @Nullable default Boolean getSkipValidation()
      Should we skip construct validation.

      Default: - false

    • getValidateOnSynthesis

      @Stability(Stable) @Nullable default Boolean getValidateOnSynthesis()
      Whether the stack should be validated after synthesis to check for error metadata.

      Default: - false

    • builder

      @Stability(Stable) static StageSynthesisOptions.Builder builder()
      Returns:
      a StageSynthesisOptions.Builder of StageSynthesisOptions