Interface IReusableStackSynthesizer
Interface for Stack Synthesizers that can be used for more than one stack.
Inherited Members
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IReusableStackSynthesizer : IStackSynthesizer
Syntax (vb)
Public Interface IReusableStackSynthesizer
Inherits IStackSynthesizer
Remarks
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.
Synopsis
Methods
ReusableBind(Stack) | Produce a bound Stack Synthesizer for the given stack. |
Methods
ReusableBind(Stack)
Produce a bound Stack Synthesizer for the given stack.
IBoundStackSynthesizer ReusableBind(Stack stack)
Parameters
- stack Stack
Returns
Remarks
This method may be called more than once on the same object.