@aws-quickstart/eks-blueprints
    Preparing search index...

    Interface AsyncStackBuilder

    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 Summary)

    Implemented by

    Index

    Methods

    • Parameters

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

      Returns Promise<Stack>