import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface EventStreamProperties { ApplicationId: Value; DestinationStreamArn: Value; RoleArn: Value; } export default class EventStream extends ResourceBase { constructor(properties: EventStreamProperties); }