Module Values.CreateIdMappingWorkflowInputSource

Creates an IdMappingWorkflow object which stores the configuration of the data processing job to be run. Each IdMappingWorkflow must have a unique workflow name. To modify an existing workflow, use the UpdateIdMappingWorkflow API. Incremental processing is not supported for ID mapping workflows.

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

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

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

    A description of the workflow.

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

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

    *)
  4. outputSourceConfig : IdMappingWorkflowOutputSourceConfig.t option;
    (*

    A list of IdMappingWorkflowOutputSource objects, each of which contains fields outputS3Path and KMSArn.

    *)
  5. idMappingTechniques : IdMappingTechniques.t;
    (*

    An object which defines the ID mapping technique and any additional configurations.

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

    The incremental run configuration for the ID mapping workflow.

    *)
  7. roleArn : IdMappingRoleArn.t option;
    (*

    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:??? -> ?outputSourceConfig:??? -> ?incrementalRunConfig:??? -> ?roleArn:??? -> ?tags:??? -> workflowName:EntityName.t -> inputSourceConfig:IdMappingWorkflowInputSourceConfig.t -> idMappingTechniques:IdMappingTechniques.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of InputSourceARN.t ]) 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 * [> `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