UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

14 lines (13 loc) 467 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface EmailChannelProperties { ConfigurationSet?: Value<string>; FromAddress: Value<string>; Enabled?: Value<boolean>; ApplicationId: Value<string>; Identity: Value<string>; RoleArn?: Value<string>; } export default class Inner_EmailChannel extends ResourceBase<EmailChannelProperties> { constructor(properties: EmailChannelProperties); }