/** *
The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.
*/ export interface _EventsConfiguration { /** *The bot ID.
*/ BotId?: string; /** *HTTPS endpoint that allows a bot to receive outgoing events.
*/ OutboundEventsHTTPSEndpoint?: string; /** *Lambda function ARN that allows a bot to receive outgoing events.
*/ LambdaFunctionArn?: string; } export declare type _UnmarshalledEventsConfiguration = _EventsConfiguration;