Class: Aws::Athena::Types::ListWorkGroupsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListWorkGroupsOutput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
-
#work_groups ⇒ Array<Types::WorkGroupSummary>
A list of WorkGroupSummary objects that include the names, descriptions, creation times, and states for each workgroup.
Instance Attribute Details
#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.
3023 3024 3025 3026 3027 3028 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3023 class ListWorkGroupsOutput < Struct.new( :work_groups, :next_token) SENSITIVE = [] include Aws::Structure end |
#work_groups ⇒ Array<Types::WorkGroupSummary>
A list of WorkGroupSummary objects that include the names, descriptions, creation times, and states for each workgroup.
3023 3024 3025 3026 3027 3028 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3023 class ListWorkGroupsOutput < Struct.new( :work_groups, :next_token) SENSITIVE = [] include Aws::Structure end |