Class: Aws::Transfer::Types::ListWorkflowsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListWorkflowsResponse
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
ListWorkflows
returns theNextToken
parameter in the output. -
#workflows ⇒ Array<Types::ListedWorkflow>
Returns the
Arn
,WorkflowId
, andDescription
for each workflow.
Instance Attribute Details
#next_token ⇒ String
ListWorkflows
returns the NextToken
parameter in the output. You
can then pass the NextToken
parameter in a subsequent command to
continue listing additional workflows.
4530 4531 4532 4533 4534 4535 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4530 class ListWorkflowsResponse < Struct.new( :next_token, :workflows) SENSITIVE = [] include Aws::Structure end |
#workflows ⇒ Array<Types::ListedWorkflow>
Returns the Arn
, WorkflowId
, and Description
for each
workflow.
4530 4531 4532 4533 4534 4535 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4530 class ListWorkflowsResponse < Struct.new( :next_token, :workflows) SENSITIVE = [] include Aws::Structure end |