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.
7587 7588 7589 7590 7591 7592 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 7587 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.
7587 7588 7589 7590 7591 7592 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 7587 class GetBucketsAggregationResponse < Struct.new( :total_count, :buckets) SENSITIVE = [] include Aws::Structure end |