Class: Aws::Transfer::Types::ListExecutionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListExecutionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#executions ⇒ Array<Types::ListedExecution>
Returns the details for each execution.
-
#next_token ⇒ String
`ListExecutions` returns the `NextToken` parameter in the output.
-
#workflow_id ⇒ String
A unique identifier for the workflow.
Instance Attribute Details
#executions ⇒ Array<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`.
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_token ⇒ String
`ListExecutions` returns the `NextToken` parameter in the output. You can then pass the `NextToken` parameter in a subsequent command to continue listing additional executions.
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_id ⇒ String
A unique identifier for the workflow.
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 |