Module Values.PopulateIdMappingTableInputSource

Defines the information that's necessary to populate an ID mapping table.

Sourcetype nonrec t = {
  1. idMappingTableIdentifier : UUID.t;
    (*

    The unique identifier of the ID mapping table that you want to populate.

    *)
  2. membershipIdentifier : MembershipIdentifier.t;
    (*

    The unique identifier of the membership that contains the ID mapping table that you want to populate.

    *)
  3. jobType : JobType.t option;
    (*

    The job type of the rule-based ID mapping job. Valid values include: INCREMENTAL: Processes only new or changed data since the last job run. This is the default job type if the ID mapping workflow was created in Entity Resolution with incrementalRunConfig specified. BATCH: Processes all data from the input source, regardless of previous job runs. This is the default job type if the ID mapping workflow was created in Entity Resolution but incrementalRunConfig wasn't specified. DELETE_ONLY: Processes only deletion requests from BatchDeleteUniqueId, which is set in Entity Resolution. For more information about incrementalRunConfig and BatchDeleteUniqueId, see the Entity Resolution API Reference.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobType:??? -> idMappingTableIdentifier:UUID.t -> membershipIdentifier:MembershipIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.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