Class NestedStackSynthesizer

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.core.StackSynthesizer
software.amazon.awscdk.core.NestedStackSynthesizer
All Implemented Interfaces:
IStackSynthesizer, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.096Z") @Stability(Stable) public class NestedStackSynthesizer extends StackSynthesizer
Synthesizer for a nested stack.

Forwards all calls to the parent stack's synthesizer.

This synthesizer is automatically used for NestedStack constructs. App builder do not need to use this class directly.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.core.*;
 StackSynthesizer stackSynthesizer;
 NestedStackSynthesizer nestedStackSynthesizer = new NestedStackSynthesizer(stackSynthesizer);
 
  • Constructor Details

    • NestedStackSynthesizer

      protected NestedStackSynthesizer(software.amazon.jsii.JsiiObjectRef objRef)
    • NestedStackSynthesizer

      protected NestedStackSynthesizer(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • NestedStackSynthesizer

      @Stability(Stable) public NestedStackSynthesizer(@NotNull IStackSynthesizer parentDeployment)
      Parameters:
      parentDeployment - This parameter is required.
  • Method Details