Class: Aws::Glue::Types::TableIdentifier
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::TableIdentifier
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure that describes a target table for resource linking.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #catalog_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the Data Catalog in which the table resides. 
- 
  
    
      #database_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the catalog database that contains the target table. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the target table. 
- 
  
    
      #region  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Region of the target table. 
Instance Attribute Details
#catalog_id ⇒ String
The ID of the Data Catalog in which the table resides.
| 25122 25123 25124 25125 25126 25127 25128 25129 | # File 'lib/aws-sdk-glue/types.rb', line 25122 class TableIdentifier < Struct.new( :catalog_id, :database_name, :name, :region) SENSITIVE = [] include Aws::Structure end | 
#database_name ⇒ String
The name of the catalog database that contains the target table.
| 25122 25123 25124 25125 25126 25127 25128 25129 | # File 'lib/aws-sdk-glue/types.rb', line 25122 class TableIdentifier < Struct.new( :catalog_id, :database_name, :name, :region) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the target table.
| 25122 25123 25124 25125 25126 25127 25128 25129 | # File 'lib/aws-sdk-glue/types.rb', line 25122 class TableIdentifier < Struct.new( :catalog_id, :database_name, :name, :region) SENSITIVE = [] include Aws::Structure end | 
#region ⇒ String
Region of the target table.
| 25122 25123 25124 25125 25126 25127 25128 25129 | # File 'lib/aws-sdk-glue/types.rb', line 25122 class TableIdentifier < Struct.new( :catalog_id, :database_name, :name, :region) SENSITIVE = [] include Aws::Structure end |