UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

21 lines (20 loc) 676 B
import { ResourceBase } from "../../resource"; import { Value, List, MapOf } from "../../data-types"; export declare class Target { TargetType?: Value<string>; TargetAddress?: Value<string>; constructor(properties: Target); } export interface NotificationRuleProperties { EventTypeIds: List<Value<string>>; Status?: Value<string>; DetailType: Value<string>; Resource: Value<string>; Targets: List<Target>; Tags?: MapOf<any>; Name: Value<string>; } export default class Inner_NotificationRule extends ResourceBase<NotificationRuleProperties> { static Target: typeof Target; constructor(properties: NotificationRuleProperties); }