opinionated-ci-pipeline
Version:
CI/CD on AWS with feature-branch builds, developer-environment deployments, and build status notifications.
12 lines (11 loc) • 397 B
TypeScript
import { Stage, StageProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { IStacksCreation } from '../applicationProps';
export interface AppStageProps extends StageProps {
envName: string;
stacks: IStacksCreation;
fixPathsMetadata?: boolean;
}
export declare class AppStage extends Stage {
constructor(scope: Construct, id: string, props: AppStageProps);
}