Module Values.EventsConfigurationSource

The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.

Sourcetype nonrec t = {
  1. botId : String_.t option;
    (*

    The bot ID.

    *)
  2. outboundEventsHTTPSEndpoint : SensitiveString.t option;
    (*

    HTTPS endpoint that allows a bot to receive outgoing events.

    *)
  3. lambdaFunctionArn : SensitiveString.t option;
    (*

    Lambda function ARN that allows a bot to receive outgoing events.

    *)
}
Sourceval make : ?botId:??? -> ?outboundEventsHTTPSEndpoint:??? -> ?lambdaFunctionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t