Generic builder interface that can produce a stack.

interface StackBuilder {
    build(scope: Construct, id: string, stackProps?: StackProps): Stack;
}

Hierarchy (view full)

Implemented by

Methods

Methods

  • Parameters

    • scope: Construct
    • id: string
    • OptionalstackProps: StackProps

    Returns Stack