Module Values.MatchingWorkflowSummarySource

A list of MatchingWorkflowSummary objects, each of which contain the fields workflowName, workflowArn, resolutionType, createdAt, updatedAt.

Sourcetype nonrec t = {
  1. workflowName : EntityName.t option;
    (*

    The name of the workflow.

    *)
  2. workflowArn : MatchingWorkflowArn.t option;
    (*

    The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The timestamp of when the workflow was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the workflow was last updated.

    *)
  5. resolutionType : ResolutionType.t option;
    (*

    The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.

    *)
}
Sourceval make : ?workflowName:??? -> ?workflowArn:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?resolutionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.t | `Timestamp of Timestamp.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