Class: Aws::IoTEvents::Types::ResetTimerAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::ResetTimerAction
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass ResetTimerAction data as a hash:
{
timer_name: "TimerName", # required
}
Information required to reset the timer. The timer is reset to the previously evaluated result of the duration. The duration expression isn't reevaluated when you reset the timer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timer_name ⇒ String
The name of the timer to reset.
Instance Attribute Details
#timer_name ⇒ String
The name of the timer to reset.
5159 5160 5161 5162 5163 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 5159 class ResetTimerAction < Struct.new( :timer_name) SENSITIVE = [] include Aws::Structure end |