Module Values.WorkerLogDeliverySource

Workers can send worker logs to different destination types. This configuration specifies the details of these destinations.

Sourcetype nonrec t = {
  1. cloudWatchLogs : CloudWatchLogsLogDelivery.t option;
    (*

    Details about delivering logs to Amazon CloudWatch Logs.

    *)
  2. firehose : FirehoseLogDelivery.t option;
    (*

    Details about delivering logs to Amazon Kinesis Data Firehose.

    *)
  3. s3 : S3LogDelivery.t option;
    (*

    Details about delivering logs to Amazon S3.

    *)
}
Sourceval make : ?cloudWatchLogs:??? -> ?firehose:??? -> ?s3:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `String of string ]) 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