Class: Aws::Glue::Types::SearchTablesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SearchTablesResponse
- Defined in:
- gems/aws-sdk-glue/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.
22784 22785 22786 22787 22788 22789 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22784 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.
22784 22785 22786 22787 22788 22789 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22784 class SearchTablesResponse < Struct.new( :next_token, :table_list) SENSITIVE = [] include Aws::Structure end |