import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface EmailChannelProperties { ConfigurationSet?: Value; FromAddress: Value; Enabled?: Value; ApplicationId: Value; Identity: Value; RoleArn?: Value; } export default class EmailChannel extends ResourceBase { constructor(properties: EmailChannelProperties); }