Class: Aws::IoTEventsData::Types::TimerDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::TimerDefinition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ioteventsdata/types.rb
Overview
Note:
When making an API call, you may pass TimerDefinition data as a hash:
{
name: "TimerName", # required
seconds: 1, # required
}
The new setting of a timer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the timer.
-
#seconds ⇒ Integer
The new setting of the timer (the number of seconds before the timer elapses).
Instance Attribute Details
#name ⇒ String
The name of the timer.
1518 1519 1520 1521 1522 1523 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 1518 class TimerDefinition < Struct.new( :name, :seconds) SENSITIVE = [] include Aws::Structure end |
#seconds ⇒ Integer
The new setting of the timer (the number of seconds before the timer elapses).
1518 1519 1520 1521 1522 1523 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 1518 class TimerDefinition < Struct.new( :name, :seconds) SENSITIVE = [] include Aws::Structure end |