Class: Aws::IoTEventsData::Types::BatchEnableAlarmRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::BatchEnableAlarmRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ioteventsdata/types.rb
Overview
Note:
When making an API call, you may pass BatchEnableAlarmRequest data as a hash:
{
enable_action_requests: [ # required
{
request_id: "RequestId", # required
alarm_model_name: "AlarmModelName", # required
key_value: "KeyValue",
note: "Note",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable_action_requests ⇒ Array<Types::EnableAlarmActionRequest>
The list of enable action requests.
Instance Attribute Details
#enable_action_requests ⇒ Array<Types::EnableAlarmActionRequest>
The list of enable action requests. You can specify up to 10 requests per operation.
429 430 431 432 433 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 429 class BatchEnableAlarmRequest < Struct.new( :enable_action_requests) SENSITIVE = [] include Aws::Structure end |