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
valueis 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.
8968 8969 8970 8971 8972 8973 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 8968 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.
8968 8969 8970 8971 8972 8973 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 8968 class SuppressionPeriod < Struct.new( :value, :suppression_unit) SENSITIVE = [] include Aws::Structure end |