UNPKG

@cpmech/az-cdk

Version:
11 lines (10 loc) 379 B
import { Construct } from '@aws-cdk/core'; import { Pipeline } from '@aws-cdk/aws-codepipeline'; export interface IPipelineNotificationProps { topicName: string; emails: string[]; pipeline: Pipeline; } export declare class PipelineNotificationConstruct extends Construct { constructor(scope: Construct, id: string, props: IPipelineNotificationProps); }