Class: Aws::IoTEvents::Types::CreateAlarmModelResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEvents::Types::CreateAlarmModelResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotevents/types.rb
 
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #alarm_model_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the alarm model.
 - 
  
    
      #alarm_model_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the alarm model.
 - 
  
    
      #creation_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the alarm model was created, in the Unix epoch format.
 - 
  
    
      #last_update_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the alarm model was last updated, in the Unix epoch format.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the alarm model.
 
Instance Attribute Details
#alarm_model_arn ⇒ String
The ARN of the alarm model. For more information, see [Amazon Resource Names (ARNs)] in the *AWS General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
      892 893 894 895 896 897 898 899 900  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 892 class CreateAlarmModelResponse < Struct.new( :creation_time, :alarm_model_arn, :alarm_model_version, :last_update_time, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#alarm_model_version ⇒ String
The version of the alarm model.
      892 893 894 895 896 897 898 899 900  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 892 class CreateAlarmModelResponse < Struct.new( :creation_time, :alarm_model_arn, :alarm_model_version, :last_update_time, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_time ⇒ Time
The time the alarm model was created, in the Unix epoch format.
      892 893 894 895 896 897 898 899 900  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 892 class CreateAlarmModelResponse < Struct.new( :creation_time, :alarm_model_arn, :alarm_model_version, :last_update_time, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#last_update_time ⇒ Time
The time the alarm model was last updated, in the Unix epoch format.
      892 893 894 895 896 897 898 899 900  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 892 class CreateAlarmModelResponse < Struct.new( :creation_time, :alarm_model_arn, :alarm_model_version, :last_update_time, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the alarm model. The status can be one of the following values:
- 
‘ACTIVE` - The alarm model is active and it’s ready to evaluate data.
 - 
‘ACTIVATING` - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.
 - 
‘INACTIVE` - The alarm model is inactive, so it isn’t ready to evaluate data. Check your alarm model information and update the alarm model.
 - 
‘FAILED` - You couldn’t create or update the alarm model. Check your alarm model information and try again.
 
      892 893 894 895 896 897 898 899 900  | 
    
      # File 'lib/aws-sdk-iotevents/types.rb', line 892 class CreateAlarmModelResponse < Struct.new( :creation_time, :alarm_model_arn, :alarm_model_version, :last_update_time, :status) SENSITIVE = [] include Aws::Structure end  |