Class: Aws::Glue::Types::GetWorkflowRunsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GetWorkflowRunsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass GetWorkflowRunsRequest data as a hash:
{
name: "NameString", # required
include_graph: false,
next_token: "GenericString",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_graph ⇒ Boolean
Specifies whether to include the workflow graph in response or not.
-
#max_results ⇒ Integer
The maximum number of workflow runs to be included in the response.
-
#name ⇒ String
Name of the workflow whose metadata of runs should be returned.
-
#next_token ⇒ String
The maximum size of the response.
Instance Attribute Details
#include_graph ⇒ Boolean
Specifies whether to include the workflow graph in response or not.
9544 9545 9546 9547 9548 9549 9550 9551 |
# File 'lib/aws-sdk-glue/types.rb', line 9544 class GetWorkflowRunsRequest < Struct.new( :name, :include_graph, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of workflow runs to be included in the response.
9544 9545 9546 9547 9548 9549 9550 9551 |
# File 'lib/aws-sdk-glue/types.rb', line 9544 class GetWorkflowRunsRequest < Struct.new( :name, :include_graph, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the workflow whose metadata of runs should be returned.
9544 9545 9546 9547 9548 9549 9550 9551 |
# File 'lib/aws-sdk-glue/types.rb', line 9544 class GetWorkflowRunsRequest < Struct.new( :name, :include_graph, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The maximum size of the response.
9544 9545 9546 9547 9548 9549 9550 9551 |
# File 'lib/aws-sdk-glue/types.rb', line 9544 class GetWorkflowRunsRequest < Struct.new( :name, :include_graph, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |