Class: Aws::Transfer::Types::ListExecutionsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#executionsArray<Types::ListedExecution>

Returns the details for each execution.

  • NextToken: returned from a call to several APIs, you can use pass it to a subsequent command to continue listing additional executions.

  • StartTime: timestamp indicating when the execution began.

  • Executions: details of the execution, including the execution ID, initial file location, and Service metadata.

  • Status: one of the following values: ‘IN_PROGRESS`, `COMPLETED`, `EXCEPTION`, `HANDLING_EXEPTION`.

Returns:



3363
3364
3365
3366
3367
3368
3369
# File 'lib/aws-sdk-transfer/types.rb', line 3363

class ListExecutionsResponse < Struct.new(
  :next_token,
  :workflow_id,
  :executions)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

‘ListExecutions` returns the `NextToken` parameter in the output. You can then pass the `NextToken` parameter in a subsequent command to continue listing additional executions.

Returns:

  • (String)


3363
3364
3365
3366
3367
3368
3369
# File 'lib/aws-sdk-transfer/types.rb', line 3363

class ListExecutionsResponse < Struct.new(
  :next_token,
  :workflow_id,
  :executions)
  SENSITIVE = []
  include Aws::Structure
end

#workflow_idString

A unique identifier for the workflow.

Returns:

  • (String)


3363
3364
3365
3366
3367
3368
3369
# File 'lib/aws-sdk-transfer/types.rb', line 3363

class ListExecutionsResponse < Struct.new(
  :next_token,
  :workflow_id,
  :executions)
  SENSITIVE = []
  include Aws::Structure
end