import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface NotificationChannelProperties { SnsTopicArn: Value; SnsRoleName: Value; } export default class NotificationChannel extends ResourceBase { constructor(properties: NotificationChannelProperties); }