Class: Aws::IoT::Types::AggregationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AggregationType
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AggregationType data as a hash:
{
name: "Statistics", # required, accepts Statistics, Percentiles, Cardinality
values: ["AggregationTypeValue"],
}
The type of aggregation queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the aggregation type.
-
#values ⇒ Array<String>
A list of the values of aggregation types.
Instance Attribute Details
#name ⇒ String
The name of the aggregation type.
620 621 622 623 624 625 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 620 class AggregationType < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A list of the values of aggregation types.
620 621 622 623 624 625 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 620 class AggregationType < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |