Class: Aws::Glue::Types::KeySchemaElement
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::KeySchemaElement
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A partition key pair consisting of a name and a type.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of a partition key. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of a partition key. 
Instance Attribute Details
#name ⇒ String
The name of a partition key.
| 17495 17496 17497 17498 17499 17500 | # File 'lib/aws-sdk-glue/types.rb', line 17495 class KeySchemaElement < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of a partition key.
| 17495 17496 17497 17498 17499 17500 | # File 'lib/aws-sdk-glue/types.rb', line 17495 class KeySchemaElement < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |