public static interface WorkflowDetails.Builder extends SdkPojo, CopyableBuilder<WorkflowDetails.Builder,WorkflowDetails>
| Modifier and Type | Method and Description |
|---|---|
WorkflowDetails.Builder |
onPartialUpload(Collection<WorkflowDetail> onPartialUpload)
A trigger that starts a workflow if a file is only partially uploaded.
|
WorkflowDetails.Builder |
onPartialUpload(Consumer<WorkflowDetail.Builder>... onPartialUpload)
A trigger that starts a workflow if a file is only partially uploaded.
|
WorkflowDetails.Builder |
onPartialUpload(WorkflowDetail... onPartialUpload)
A trigger that starts a workflow if a file is only partially uploaded.
|
WorkflowDetails.Builder |
onUpload(Collection<WorkflowDetail> onUpload)
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.
|
WorkflowDetails.Builder |
onUpload(Consumer<WorkflowDetail.Builder>... onUpload)
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.
|
WorkflowDetails.Builder |
onUpload(WorkflowDetail... onUpload)
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildWorkflowDetails.Builder onUpload(Collection<WorkflowDetail> onUpload)
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":[]}'
onUpload - 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":[]}'
WorkflowDetails.Builder onUpload(WorkflowDetail... onUpload)
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":[]}'
onUpload - 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":[]}'
WorkflowDetails.Builder onUpload(Consumer<WorkflowDetail.Builder>... onUpload)
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":[]}'
WorkflowDetail.Builder avoiding the need to create one
manually via WorkflowDetail.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately
and its result is passed to #onUpload(List.
onUpload - a consumer that will call methods on
WorkflowDetail.Builder#onUpload(java.util.Collection) WorkflowDetails.Builder onPartialUpload(Collection<WorkflowDetail> onPartialUpload)
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.
onPartialUpload - 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.
WorkflowDetails.Builder onPartialUpload(WorkflowDetail... onPartialUpload)
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.
onPartialUpload - 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.
WorkflowDetails.Builder onPartialUpload(Consumer<WorkflowDetail.Builder>... onPartialUpload)
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.
This is a convenience method that creates an instance of theWorkflowDetail.Builder avoiding the need to create one
manually via WorkflowDetail.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately
and its result is passed to #onPartialUpload(List.
onPartialUpload - a consumer that will call methods on
WorkflowDetail.Builder#onPartialUpload(java.util.Collection) Copyright © 2023. All rights reserved.