Module Values.WorkflowDetailSource

Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. In addition to a workflow to execute when a file is uploaded completely, WorkflowDetails can also contain a workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when the server session disconnects while the file is still being uploaded.

Sourcetype nonrec t = {
  1. workflowId : WorkflowId.t;
    (*

    A unique identifier for the workflow.

    *)
  2. executionRole : Role.t;
    (*

    Includes the necessary permissions for S3, EFS, and Lambda operations that Transfer can assume, so that all workflow steps can operate on the required resources

    *)
}
Sourceval context_ : string
Sourceval make : workflowId:WorkflowId.t -> executionRole:Role.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkflowId.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