Module Values.DataIntegrationEventDatasetTargetDetailsSource

The target dataset details for a DATASET event type.

Sourcetype nonrec t = {
  1. datasetIdentifier : DataIntegrationDatasetArn.t option;
    (*

    The datalake dataset ARN identifier.

    *)
  2. operationType : DataIntegrationEventDatasetOperationType.t option;
    (*

    The target dataset load operation type. The available options are: APPEND - Add new records to the dataset. Noted that this operation type will just try to append records as-is without any primary key or partition constraints. UPSERT - Modify existing records in the dataset with primary key configured, events for datasets without primary keys are not allowed. If event data contains primary keys that match records in the dataset within same partition, then those existing records (in that partition) will be updated. If primary keys do not match, new records will be added. Note that if dataset contain records with duplicate primary key values in the same partition, those duplicate records will be deduped into one updated record. DELETE - Remove existing records in the dataset with primary key configured, events for datasets without primary keys are not allowed. If event data contains primary keys that match records in the dataset within same partition, then those existing records (in that partition) will be deleted. If primary keys do not match, no actions will be done. Note that if dataset contain records with duplicate primary key values in the same partition, all those duplicates will be removed.

    *)
  3. datasetLoadExecution : DataIntegrationEventDatasetLoadExecutionDetails.t option;
    (*

    The target dataset load execution.

    *)
}
Sourceval make : ?datasetIdentifier:??? -> ?operationType:??? -> ?datasetLoadExecution:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DataIntegrationDatasetArn.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) 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