Class: Aws::Athena::Types::ListQueryExecutionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListQueryExecutionsInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of query executions to return in this request.
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
-
#work_group ⇒ String
The name of the workgroup from which queries are being returned.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of query executions to return in this request.
2787 2788 2789 2790 2791 2792 2793 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2787 class ListQueryExecutionsInput < Struct.new( :next_token, :max_results, :work_group) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token generated by the Athena service that specifies where to
continue pagination if a previous request was truncated. To obtain
the next set of pages, pass in the NextToken
from the response
object of the previous page call.
2787 2788 2789 2790 2791 2792 2793 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2787 class ListQueryExecutionsInput < Struct.new( :next_token, :max_results, :work_group) SENSITIVE = [] include Aws::Structure end |
#work_group ⇒ String
The name of the workgroup from which queries are being returned. If a workgroup is not specified, a list of available query execution IDs for the queries in the primary workgroup is returned.
2787 2788 2789 2790 2791 2792 2793 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2787 class ListQueryExecutionsInput < Struct.new( :next_token, :max_results, :work_group) SENSITIVE = [] include Aws::Structure end |