Class: Aws::Athena::Types::ListDatabasesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListDatabasesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_list ⇒ Array<Types::Database>
A list of databases from a data catalog.
-
#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
#database_list ⇒ Array<Types::Database>
A list of databases from a data catalog.
2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-athena/types.rb', line 2271 class ListDatabasesOutput < Struct.new( :database_list, :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.
2271 2272 2273 2274 2275 2276 |
# File 'lib/aws-sdk-athena/types.rb', line 2271 class ListDatabasesOutput < Struct.new( :database_list, :next_token) SENSITIVE = [] include Aws::Structure end |