opinionated-ci-pipeline
Version:
CI/CD on AWS with feature-branch builds, developer-environment deployments, and build status notifications.
11 lines (10 loc) • 429 B
TypeScript
import { Stack, StackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { ResolvedApplicationProps } from './applicationProps';
export interface CIStackProps extends StackProps, ResolvedApplicationProps {
}
export declare class CIStack extends Stack {
constructor(scope: Construct, id: string, props: CIStackProps);
private createSlackNotifications;
private createSlackChannelConfiguration;
}