Module Values.S3DeliveryConfigurationSource

This structure contains delivery configurations that apply only when the delivery destination resource is an S3 bucket.

Sourcetype nonrec t = {
  1. suffixPath : DeliverySuffixPath.t option;
    (*

    This string allows re-configuring the S3 object prefix to contain either static or variable sections. The valid variables to use in the suffix path will vary by each log source. To find the values supported for the suffix path for each log source, use the DescribeConfigurationTemplates operation and check the allowedSuffixPathFields field in the response.

    *)
  2. enableHiveCompatiblePath : Boolean.t option;
    (*

    This parameter causes the S3 objects that contain delivered logs to use a prefix structure that allows for integration with Apache Hive.

    *)
}
Sourceval make : ?suffixPath:??? -> ?enableHiveCompatiblePath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DeliverySuffixPath.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