Class: Aws::IoTEvents::Types::DeleteAlarmModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::DeleteAlarmModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass DeleteAlarmModelRequest data as a hash:
{
alarm_model_name: "AlarmModelName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_model_name ⇒ String
The name of the alarm model.
Instance Attribute Details
#alarm_model_name ⇒ String
The name of the alarm model.
2092 2093 2094 2095 2096 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2092 class DeleteAlarmModelRequest < Struct.new( :alarm_model_name) SENSITIVE = [] include Aws::Structure end |