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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/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:



6391
6392
6393
6394
6395
6396
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6391

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:



6391
6392
6393
6394
6395
6396
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6391

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