Async extension for a stack builder to allow stacks produced asynchronously.

interface AsyncStackBuilder {
    build(scope: Construct, id: string, stackProps?: StackProps): Stack;
    buildAsync(scope: Construct, id: string, stackProps?: StackProps): Promise<Stack>;
}

Hierarchy (view full)

Implemented by

Methods

  • Parameters

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

    Returns Promise<Stack>