Server Workflow Details
data class ServerWorkflowDetails(val onPartialUpload: List<ServerWorkflowDetail>? = null, val onUpload: List<ServerWorkflowDetail>? = null)
Constructors
Link copied to clipboard
constructor(onPartialUpload: List<ServerWorkflowDetail>? = null, onUpload: List<ServerWorkflowDetail>? = null)
Properties
Link copied to clipboard
A trigger that starts a workflow if a file is only partially uploaded. You can attach a workflow to a server that executes whenever there is a partial upload. A partial upload occurs when a file is open when the session disconnects.
Link copied to clipboard
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded. To remove an associated workflow from a server, you can provide an empty OnUpload
object, as in the following example. aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'