Module Values.S3LogDeliverySource

Details about delivering logs to Amazon S3.

Sourcetype nonrec t = {
  1. bucket : string option;
    (*

    The name of the S3 bucket that is the destination for log delivery.

    *)
  2. enabled : bool;
    (*

    Specifies whether connector logs get sent to the specified Amazon S3 destination.

    *)
  3. prefix : string option;
    (*

    The S3 prefix that is the destination for log delivery.

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