Module Values.SqsActionSource

Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.

Sourcetype nonrec t = {
  1. queueUrl : QueueUrl.t;
    (*

    The URL of the SQS queue where the data is written.

    *)
  2. useBase64 : UseBase64.t option;
    (*

    Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.

    *)
  3. payload : Payload.t option;
    (*

    You can configure the action payload when you send a message to an Amazon SQS queue.

    *)
}
Sourceval context_ : string
Sourceval make : ?useBase64:??? -> ?payload:??? -> queueUrl:QueueUrl.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of UseBase64.t | `String of QueueUrl.t | `Structure of (string * [> `Enum of string | `String of ContentExpression.t ]) list ]) 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