Module Values.UpdateIdMappingWorkflowOutputSource

Updates an existing IdMappingWorkflow. This method is identical to CreateIdMappingWorkflow, except it uses an HTTP PUT request instead of a POST request, and the IdMappingWorkflow must already exist for the method to succeed. Incremental processing is not supported for ID mapping workflows.

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

    The name of the workflow.

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

    The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.

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

    A description of the workflow.

    *)
  4. inputSourceConfig : IdMappingWorkflowInputSourceConfig.t option;
    (*

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

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

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

    *)
  6. idMappingTechniques : IdMappingTechniques.t option;
    (*

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

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

    The incremental run configuration for the update ID mapping workflow output.

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

    The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?workflowName:??? -> ?workflowArn:??? -> ?description:??? -> ?inputSourceConfig:??? -> ?outputSourceConfig:??? -> ?idMappingTechniques:??? -> ?incrementalRunConfig:??? -> ?roleArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of InputSourceARN.t ]) list ] 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