Class: Aws::BCMDataExports::Types::Column
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::BCMDataExports::Types::Column
 
- Defined in:
- gems/aws-sdk-bcmdataexports/lib/aws-sdk-bcmdataexports/types.rb
Overview
Includes basic information for a data column such as its description, name, and type.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description for a column. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The column name. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of data a column stores. 
Instance Attribute Details
#description ⇒ String
The description for a column.
| 30 31 32 33 34 35 36 | # File 'gems/aws-sdk-bcmdataexports/lib/aws-sdk-bcmdataexports/types.rb', line 30 class Column < Struct.new( :description, :name, :type) SENSITIVE = [] include Aws::Structure end |