Class: Aws::IoT::Types::GetBucketsAggregationResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::GetBucketsAggregationResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #buckets  ⇒ Array<Types::Bucket> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The main part of the response with a list of buckets.
 - 
  
    
      #total_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of things that fit the query string criteria.
 
Instance Attribute Details
#buckets ⇒ Array<Types::Bucket>
The main part of the response with a list of buckets. Each bucket contains a ‘keyValue` and a `count`.
‘keyValue`: The aggregation field value counted for the particular bucket.
‘count`: The number of documents that have that value.
      7290 7291 7292 7293 7294 7295  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 7290 class GetBucketsAggregationResponse < Struct.new( :total_count, :buckets) SENSITIVE = [] include Aws::Structure end  | 
  
#total_count ⇒ Integer
The total number of things that fit the query string criteria.
      7290 7291 7292 7293 7294 7295  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 7290 class GetBucketsAggregationResponse < Struct.new( :total_count, :buckets) SENSITIVE = [] include Aws::Structure end  |