values property
Array of numbers representing the values for the metric during the period.
Each unique value is listed just once in this array, and the corresponding
number in the Counts
array specifies the number of times that
value occurred during the period. You can include up to 150 unique values in
each PutMetricData
action that specifies a Values
array.
Although the Values
array accepts numbers of type
Double
, CloudWatch rejects values that are either too small or
too large. Values must be in the range of -2^360 to 2^360. In addition,
special values (for example, NaN, +Infinity, -Infinity) are not supported.
Implementation
final List<double>? values;