UNPKG

@cloudcamp/aws-runtime

Version:

CloudCamp - Launch faster by building scalable infrastructure in few lines of code.

27 lines (26 loc) 532 B
import * as cdk from "aws-cdk-lib/core"; import { Stack } from "./stack"; import { Construct } from "constructs"; /** * @experimental * @order 3 */ export declare class Stage extends cdk.Stage { /** * @experimental */ stack: Stack; private _needsManualApproval; /** * @experimental */ set needsManualApproval(value: boolean); /** * @experimental */ get needsManualApproval(): boolean; /** * @experimental */ constructor(scope: Construct, id: string); }