Module Values.CreateMatchingWorkflowInputSource

Creates a matching workflow that defines the configuration for a data processing job. The workflow name must be unique. To modify an existing workflow, use UpdateMatchingWorkflow. For workflows where resolutionType is ML_MATCHING or PROVIDER, incremental processing is not supported.

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

    The name of the workflow. There can't be multiple MatchingWorkflows with the same name.

    *)
  2. description : Description.t option;
    (*

    A description of the workflow.

    *)
  3. inputSourceConfig : InputSourceConfig.t;
    (*

    A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

    *)
  4. outputSourceConfig : OutputSourceConfig.t;
    (*

    A list of OutputSource objects, each of which contains fields outputS3Path, applyNormalization, KMSArn, and output.

    *)
  5. resolutionTechniques : ResolutionTechniques.t;
    (*

    An object which defines the resolutionType and the ruleBasedProperties.

    *)
  6. incrementalRunConfig : IncrementalRunConfig.t option;
    (*

    Optional. An object that defines the incremental run type. This object contains only the incrementalRunType field, which appears as "Automatic" in the console. For workflows where resolutionType is ML_MATCHING or PROVIDER, incremental processing is not supported.

    *)
  7. roleArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

    *)
  8. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?incrementalRunConfig:??? -> ?tags:??? -> workflowName:EntityName.t -> inputSourceConfig:InputSourceConfig.t -> outputSourceConfig:OutputSourceConfig.t -> resolutionTechniques:ResolutionTechniques.t -> roleArn:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of AttributeName.t ]) list ] list | `String of InputSourceARN.t | `Structure of (string * [> `String of CustomerProfilesDomainArn.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of EntityName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of AttributeName.t ] list | `String of RuleRuleNameString.t ]) list ] list | `String of ProviderServiceArn.t | `Structure of (string * [> `Boolean of Boolean.t | `String of S3Path.t ]) list ]) list ]) 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