Class: Aws::IoT::Types::AggregationType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#nameString

The name of the aggregation type.

Returns:

  • (String)


637
638
639
640
641
642
# File 'lib/aws-sdk-iot/types.rb', line 637

class AggregationType < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

A list of the values of aggregation types.

Returns:

  • (Array<String>)


637
638
639
640
641
642
# File 'lib/aws-sdk-iot/types.rb', line 637

class AggregationType < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end