Class: Aws::Athena::Types::ListNamedQueriesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListNamedQueriesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#named_query_ids ⇒ Array<String>
The list of unique query IDs.
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
Instance Attribute Details
#named_query_ids ⇒ Array<String>
The list of unique query IDs.
2622 2623 2624 2625 2626 2627 |
# File 'lib/aws-sdk-athena/types.rb', line 2622 class ListNamedQueriesOutput < Struct.new( :named_query_ids, :next_token) 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.
2622 2623 2624 2625 2626 2627 |
# File 'lib/aws-sdk-athena/types.rb', line 2622 class ListNamedQueriesOutput < Struct.new( :named_query_ids, :next_token) SENSITIVE = [] include Aws::Structure end |