Class: Aws::IoT::Types::CloudwatchAlarmAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::CloudwatchAlarmAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes an action that updates a CloudWatch alarm.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #alarm_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CloudWatch alarm name.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IAM role that allows access to the CloudWatch alarm.
 - 
  
    
      #state_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason for the alarm change.
 - 
  
    
      #state_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the alarm state.
 
Instance Attribute Details
#alarm_name ⇒ String
The CloudWatch alarm name.
      1988 1989 1990 1991 1992 1993 1994 1995  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1988 class CloudwatchAlarmAction < Struct.new( :role_arn, :alarm_name, :state_reason, :state_value) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The IAM role that allows access to the CloudWatch alarm.
      1988 1989 1990 1991 1992 1993 1994 1995  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1988 class CloudwatchAlarmAction < Struct.new( :role_arn, :alarm_name, :state_reason, :state_value) SENSITIVE = [] include Aws::Structure end  | 
  
#state_reason ⇒ String
The reason for the alarm change.
      1988 1989 1990 1991 1992 1993 1994 1995  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1988 class CloudwatchAlarmAction < Struct.new( :role_arn, :alarm_name, :state_reason, :state_value) SENSITIVE = [] include Aws::Structure end  | 
  
#state_value ⇒ String
The value of the alarm state. Acceptable values are: OK, ALARM, INSUFFICIENT_DATA.
      1988 1989 1990 1991 1992 1993 1994 1995  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1988 class CloudwatchAlarmAction < Struct.new( :role_arn, :alarm_name, :state_reason, :state_value) SENSITIVE = [] include Aws::Structure end  |