Show / Hide Table of Contents

Interface IReusableStackSynthesizer

Interface for Stack Synthesizers that can be used for more than one stack.

Inherited Members
IStackSynthesizer.AddDockerImageAsset(IDockerImageAssetSource)
IStackSynthesizer.AddFileAsset(IFileAssetSource)
IStackSynthesizer.Bind(Stack)
IStackSynthesizer.Synthesize(ISynthesisSession)
IStackSynthesizer.BootstrapQualifier
IStackSynthesizer.LookupRole
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

IBoundStackSynthesizer

Remarks

This method may be called more than once on the same object.

Back to top Generated by DocFX