Class: Aws::IoTEventsData::Types::BatchAlarmActionErrorEntry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEventsData::Types::BatchAlarmActionErrorEntry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ioteventsdata/types.rb
 
Overview
Contains error messages associated with one of the following requests:
- BatchAcknowledgeAlarm][1
 
- BatchDisableAlarm][2
 
- BatchEnableAlarm][3
 
- BatchResetAlarm][4
 
- BatchSnoozeAlarm][5
 
[1]: docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchAcknowledgeAlarm.html [2]: docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchDisableAlarm.html [3]: docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchEnableAlarm.html [4]: docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchResetAlarm.html [5]: docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchSnoozeAlarm.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error code.
 - 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A message that describes the error.
 - 
  
    
      #request_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The request ID.
 
Instance Attribute Details
#error_code ⇒ String
The error code.
      278 279 280 281 282 283 284  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 278 class BatchAlarmActionErrorEntry < Struct.new( :request_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end  | 
  
#error_message ⇒ String
A message that describes the error.
      278 279 280 281 282 283 284  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 278 class BatchAlarmActionErrorEntry < Struct.new( :request_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end  | 
  
#request_id ⇒ String
The request ID. Each ID must be unique within each batch.
      278 279 280 281 282 283 284  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 278 class BatchAlarmActionErrorEntry < Struct.new( :request_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end  |