UNPKG

opinionated-ci-pipeline

Version:

CI/CD on AWS with feature-branch builds, developer-environment deployments, and build status notifications.

11 lines (10 loc) 353 B
import { Construct } from 'constructs'; import { Topic } from 'aws-cdk-lib/aws-sns'; export interface NotificationsTopicProps { projectName: string; notificationName: string; } export declare class NotificationsTopic extends Construct { readonly topic: Topic; constructor(scope: Construct, id: string, props: NotificationsTopicProps); }