Class: Aws::CloudWatch::Types::MetricCharacteristics

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatch/types.rb

Overview

This object includes parameters that you can use to provide information to CloudWatch to help it build more accurate anomaly detection models.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#periodic_spikesBoolean

Set this parameter to ‘true` if values for this metric consistently include spikes that should not be considered to be anomalies. With this set to `true`, CloudWatch will expect to see spikes that occurred consistently during the model training period, and won’t flag future similar spikes as anomalies.

Returns:

  • (Boolean)


2606
2607
2608
2609
2610
# File 'lib/aws-sdk-cloudwatch/types.rb', line 2606

class MetricCharacteristics < Struct.new(
  :periodic_spikes)
  SENSITIVE = []
  include Aws::Structure
end