import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface EventSourceMappingProperties { BatchSize?: Value; Enabled?: Value; EventSourceArn: Value; FunctionName: Value; StartingPosition?: Value; } export default class EventSourceMapping extends ResourceBase { constructor(properties: EventSourceMappingProperties); }