Class: Aws::Glue::Types::GetPartitionsResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::GetPartitionsResponse
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A continuation token, if the returned list of partitions does not include the last one. 
- 
  
    
      #partitions  ⇒ Array<Types::Partition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of requested partitions. 
Instance Attribute Details
#next_token ⇒ String
A continuation token, if the returned list of partitions does not include the last one.
| 13296 13297 13298 13299 13300 13301 | # File 'lib/aws-sdk-glue/types.rb', line 13296 class GetPartitionsResponse < Struct.new( :partitions, :next_token) SENSITIVE = [] include Aws::Structure end | 
#partitions ⇒ Array<Types::Partition>
A list of requested partitions.
| 13296 13297 13298 13299 13300 13301 | # File 'lib/aws-sdk-glue/types.rb', line 13296 class GetPartitionsResponse < Struct.new( :partitions, :next_token) SENSITIVE = [] include Aws::Structure end |