Class: Aws::Transfer::Types::ListExecutionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListExecutionsResponse
- Defined in:
- gems/aws-sdk-transfer/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, in a
ListedExecution
array. -
#next_token ⇒ String
ListExecutions
returns theNextToken
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, in a ListedExecution
array.
4234 4235 4236 4237 4238 4239 4240 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4234 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.
4234 4235 4236 4237 4238 4239 4240 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4234 class ListExecutionsResponse < Struct.new( :next_token, :workflow_id, :executions) SENSITIVE = [] include Aws::Structure end |
#workflow_id ⇒ String
A unique identifier for the workflow.
4234 4235 4236 4237 4238 4239 4240 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4234 class ListExecutionsResponse < Struct.new( :next_token, :workflow_id, :executions) SENSITIVE = [] include Aws::Structure end |