Class: Aws::Glue::Types::SearchTablesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SearchTablesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A continuation token, present if the current list segment is not the last.
-
#table_list ⇒ Array<Types::Table>
A list of the requested ‘Table` objects.
Instance Attribute Details
#next_token ⇒ String
A continuation token, present if the current list segment is not the last.
20508 20509 20510 20511 20512 20513 |
# File 'lib/aws-sdk-glue/types.rb', line 20508 class SearchTablesResponse < Struct.new( :next_token, :table_list) SENSITIVE = [] include Aws::Structure end |
#table_list ⇒ Array<Types::Table>
A list of the requested ‘Table` objects. The `SearchTables` response returns only the tables that you have access to.
20508 20509 20510 20511 20512 20513 |
# File 'lib/aws-sdk-glue/types.rb', line 20508 class SearchTablesResponse < Struct.new( :next_token, :table_list) SENSITIVE = [] include Aws::Structure end |