Class: Aws::IoT::Types::GetBucketsAggregationResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoT::Types::GetBucketsAggregationResponse
 
- Defined in:
- gems/aws-sdk-iot/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.
| 8025 8026 8027 8028 8029 8030 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 8025 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.
| 8025 8026 8027 8028 8029 8030 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 8025 class GetBucketsAggregationResponse < Struct.new( :total_count, :buckets) SENSITIVE = [] include Aws::Structure end |