Class: Aws::CloudWatchLogs::Types::SuppressionPeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::SuppressionPeriod
- Defined in:
- gems/aws-sdk-cloudwatchlogs/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.
7539 7540 7541 7542 7543 7544 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 7539 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.
7539 7540 7541 7542 7543 7544 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 7539 class SuppressionPeriod < Struct.new( :value, :suppression_unit) SENSITIVE = [] include Aws::Structure end |