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.
      5161 5162 5163 5164 5165 5166  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5161 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.
      5161 5162 5163 5164 5165 5166  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 5161 class SuppressionPeriod < Struct.new( :value, :suppression_unit) SENSITIVE = [] include Aws::Structure end  |