UNPKG

aws-event-stream

Version:
14 lines (13 loc) 250 B
/** * A Stream of events */ export interface Stream { /** * The parent aggregation for this stream */ aggregation: string; /** * The stream identifier. Must be unique for each parent aggregation */ id: string; }