Class: Aws::RedshiftDataAPIService::Types::TableMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftDataAPIService::Types::TableMember
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshiftdataapiservice/types.rb
Overview
The properties of a table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the table.
-
#schema ⇒ String
The schema containing the table.
-
#type ⇒ String
The type of the table.
Instance Attribute Details
#name ⇒ String
The name of the table.
1576 1577 1578 1579 1580 1581 1582 |
# File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1576 class TableMember < Struct.new( :name, :schema, :type) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ String
The schema containing the table.
1576 1577 1578 1579 1580 1581 1582 |
# File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1576 class TableMember < Struct.new( :name, :schema, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
1576 1577 1578 1579 1580 1581 1582 |
# File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1576 class TableMember < Struct.new( :name, :schema, :type) SENSITIVE = [] include Aws::Structure end |