Module Values.PrefixConfigSource

Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.

Sourcetype nonrec t = {
  1. prefixType : PrefixType.t option;
    (*

    Determines the format of the prefix, and whether it applies to the file name, file path, or both.

    *)
  2. prefixFormat : PrefixFormat.t option;
    (*

    Determines the level of granularity for the date and time that's included in the prefix.

    *)
  3. pathPrefixHierarchy : PathPrefixHierarchy.t option;
    (*

    Specifies whether the destination file path includes either or both of the following elements: EXECUTION_ID The ID that Amazon AppFlow assigns to the flow run. SCHEMA_VERSION The version number of your data schema. Amazon AppFlow assigns this version number. The version number increases by one when you change any of the following settings in your flow configuration: Source-to-destination field mappings Field data types Partition keys

    *)
}
Sourceval make : ?prefixType:??? -> ?prefixFormat:??? -> ?pathPrefixHierarchy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum 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