Module Values.ChangeRequestSource

A list of change request objects.

Sourcetype nonrec t = {
  1. changeType : ChangeType.t;
    (*

    Defines the type of change request. A changeType can have the following values: PUT – Adds or updates files in a database. DELETE – Deletes files in a database.

    *)
  2. s3Path : S3Path.t option;
    (*

    Defines the S3 path of the source file that is required to add or update files in a database.

    *)
  3. dbPath : DbPath.t;
    (*

    Defines the path within the database directory.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Path:??? -> changeType:ChangeType.t -> dbPath:DbPath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3Path.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