Class: Aws::CloudWatchLogs::Types::SuppressionPeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::SuppressionPeriod
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
If you are suppressing an anomaly temporariliy, this structure defines how long the suppression period is to be.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#suppression_unit ⇒ String
Specifies whether the value of ‘value` is in seconds, minutes, or hours.
-
#value ⇒ Integer
Specifies the number of seconds, minutes or hours to suppress this anomaly.
Instance Attribute Details
#suppression_unit ⇒ String
Specifies whether the value of ‘value` is in seconds, minutes, or hours.
5179 5180 5181 5182 5183 5184 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5179 class SuppressionPeriod < Struct.new( :value, :suppression_unit) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
Specifies the number of seconds, minutes or hours to suppress this anomaly. There is no maximum.
5179 5180 5181 5182 5183 5184 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5179 class SuppressionPeriod < Struct.new( :value, :suppression_unit) SENSITIVE = [] include Aws::Structure end |