Builder that can generated a nested stack to be deployed with the blueprint.

interface NestedStackBuilder {
    build(scope: Construct, id: string, stackProps?: NestedStackProps): NestedStack;
}

Methods

Methods

  • Parameters

    • scope: Construct
    • id: string
    • OptionalstackProps: NestedStackProps

    Returns NestedStack