Class: Aws::Athena::Types::ListDatabasesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListDatabasesInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_name ⇒ String
The name of the data catalog that contains the databases to return.
-
#max_results ⇒ Integer
Specifies the maximum number of results to return.
-
#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
#catalog_name ⇒ String
The name of the data catalog that contains the databases to return.
1911 1912 1913 1914 1915 1916 1917 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1911 class ListDatabasesInput < Struct.new( :catalog_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Specifies the maximum number of results to return.
1911 1912 1913 1914 1915 1916 1917 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1911 class ListDatabasesInput < Struct.new( :catalog_name, :next_token, :max_results) 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.
1911 1912 1913 1914 1915 1916 1917 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1911 class ListDatabasesInput < Struct.new( :catalog_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |