Class: Aws::Glue::Types::PartitionIndex
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::PartitionIndex
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure for a partition index.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #index_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the partition index. 
- 
  
    
      #keys  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The keys for the partition index. 
Instance Attribute Details
#index_name ⇒ String
The name of the partition index.
| 20221 20222 20223 20224 20225 20226 | # File 'lib/aws-sdk-glue/types.rb', line 20221 class PartitionIndex < Struct.new( :keys, :index_name) SENSITIVE = [] include Aws::Structure end | 
#keys ⇒ Array<String>
The keys for the partition index.
| 20221 20222 20223 20224 20225 20226 | # File 'lib/aws-sdk-glue/types.rb', line 20221 class PartitionIndex < Struct.new( :keys, :index_name) SENSITIVE = [] include Aws::Structure end |