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.
      1466 1467 1468 1469 1470 1471 1472  | 
    
      # File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1466 class TableMember < Struct.new( :name, :schema, :type) SENSITIVE = [] include Aws::Structure end  | 
  
#schema ⇒ String
The schema containing the table.
      1466 1467 1468 1469 1470 1471 1472  | 
    
      # File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1466 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.
      1466 1467 1468 1469 1470 1471 1472  | 
    
      # File 'lib/aws-sdk-redshiftdataapiservice/types.rb', line 1466 class TableMember < Struct.new( :name, :schema, :type) SENSITIVE = [] include Aws::Structure end  |