Module Values.PutEventsConfigurationRequestSource

Creates an events configuration that allows a bot to receive outgoing events sent by Amazon Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more information, see Bot.

Sourcetype nonrec t = {
  1. accountId : NonEmptyString.t;
    (*

    The Amazon Chime account ID.

    *)
  2. botId : NonEmptyString.t;
    (*

    The bot ID.

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

    HTTPS endpoint that allows the bot to receive outgoing events.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?outboundEventsHTTPSEndpoint:??? -> ?lambdaFunctionArn:??? -> accountId:NonEmptyString.t -> botId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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