Package software.amazon.awscdk
Interface IReusableStackSynthesizer
- All Superinterfaces:
IStackSynthesizer
,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IReusableStackSynthesizer.Jsii$Default
- All Known Implementing Classes:
AppStagingSynthesizer
,BootstraplessSynthesizer
,CliCredentialsStackSynthesizer
,DefaultStackSynthesizer
,IReusableStackSynthesizer.Jsii$Proxy
,LegacyStackSynthesizer
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:53.536Z")
@Stability(Stable)
public interface IReusableStackSynthesizer
extends software.amazon.jsii.JsiiSerializable, IStackSynthesizer
Interface for Stack Synthesizers that can be used for more than one stack.
Regular IStackSynthesizer
instances can only be bound to a Stack once.
IReusableStackSynthesizer
instances.
For backwards compatibility reasons, this class inherits from
IStackSynthesizer
, but if an object implements IReusableStackSynthesizer
,
no other methods than reusableBind()
will be called.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Internal default implementation forIReusableStackSynthesizer
.static final class
A proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptionreusableBind
(Stack stack) Produce a bound Stack Synthesizer for the given stack.Methods inherited from interface software.amazon.awscdk.IStackSynthesizer
addDockerImageAsset, addFileAsset, bind, getBootstrapQualifier, getLookupRole, synthesize
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
reusableBind
Produce a bound Stack Synthesizer for the given stack.This method may be called more than once on the same object.
- Parameters:
stack
- This parameter is required.
-