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.
2427 2428 2429 2430 2431 2432 |
# File 'lib/aws-sdk-athena/types.rb', line 2427 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.
2427 2428 2429 2430 2431 2432 |
# File 'lib/aws-sdk-athena/types.rb', line 2427 class ListNamedQueriesOutput < Struct.new( :named_query_ids, :next_token) SENSITIVE = [] include Aws::Structure end |