Class: Aws::Transfer::Types::WorkflowDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transfer/types.rb

Overview

Container for the ‘WorkflowDetail` data type. It is used by actions that trigger a workflow to begin execution.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#on_partial_uploadArray<Types::WorkflowDetail>

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.

Returns:



5731
5732
5733
5734
5735
5736
# File 'lib/aws-sdk-transfer/types.rb', line 5731

class WorkflowDetails < Struct.new(
  :on_upload,
  :on_partial_upload)
  SENSITIVE = []
  include Aws::Structure
end

#on_uploadArray<Types::WorkflowDetail>

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”:[]‘`

Returns:



5731
5732
5733
5734
5735
5736
# File 'lib/aws-sdk-transfer/types.rb', line 5731

class WorkflowDetails < Struct.new(
  :on_upload,
  :on_partial_upload)
  SENSITIVE = []
  include Aws::Structure
end