aws-sdk-iotevents 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-iotevents.rb +1 -1
- data/lib/aws-sdk-iotevents/client.rb +39 -23
- data/lib/aws-sdk-iotevents/client_api.rb +2 -1
- data/lib/aws-sdk-iotevents/types.rb +64 -29
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fea5e1a49e3e41257dfd304870d3de0bd475edf1d39272728b4ffd3438a54076
|
4
|
+
data.tar.gz: e067b60f680a63fee8757d28ad78d3df953c8d3075eac79a1b335f27f36abdca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92e97f2275160ae6ed4743810374d6f32573c002f89935fc0ddb7d0ba041271e9ec29f26176d7c1444f01e4ceea02ce2e1c5376bbf928fa959704b4f008ee350
|
7
|
+
data.tar.gz: 21d3707c51dbeeb912d1aaad7bbc2b982356e108699bb02cdc25dc8dcc95ce2873290e2c66a0f518e657a464e4d5a053b290f0b719964075f2a33216eb5f00ac
|
data/lib/aws-sdk-iotevents.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:iotevents)
|
|
32
32
|
module Aws::IoTEvents
|
33
33
|
# An API client for IoTEvents. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::IoTEvents::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::IoTEvents
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -366,7 +370,8 @@ module Aws::IoTEvents
|
|
366
370
|
# },
|
367
371
|
# set_timer: {
|
368
372
|
# timer_name: "TimerName", # required
|
369
|
-
# seconds: 1,
|
373
|
+
# seconds: 1,
|
374
|
+
# duration_expression: "VariableValue",
|
370
375
|
# },
|
371
376
|
# clear_timer: {
|
372
377
|
# timer_name: "TimerName", # required
|
@@ -410,7 +415,8 @@ module Aws::IoTEvents
|
|
410
415
|
# },
|
411
416
|
# set_timer: {
|
412
417
|
# timer_name: "TimerName", # required
|
413
|
-
# seconds: 1,
|
418
|
+
# seconds: 1,
|
419
|
+
# duration_expression: "VariableValue",
|
414
420
|
# },
|
415
421
|
# clear_timer: {
|
416
422
|
# timer_name: "TimerName", # required
|
@@ -457,7 +463,8 @@ module Aws::IoTEvents
|
|
457
463
|
# },
|
458
464
|
# set_timer: {
|
459
465
|
# timer_name: "TimerName", # required
|
460
|
-
# seconds: 1,
|
466
|
+
# seconds: 1,
|
467
|
+
# duration_expression: "VariableValue",
|
461
468
|
# },
|
462
469
|
# clear_timer: {
|
463
470
|
# timer_name: "TimerName", # required
|
@@ -503,7 +510,8 @@ module Aws::IoTEvents
|
|
503
510
|
# },
|
504
511
|
# set_timer: {
|
505
512
|
# timer_name: "TimerName", # required
|
506
|
-
# seconds: 1,
|
513
|
+
# seconds: 1,
|
514
|
+
# duration_expression: "VariableValue",
|
507
515
|
# },
|
508
516
|
# clear_timer: {
|
509
517
|
# timer_name: "TimerName", # required
|
@@ -695,6 +703,7 @@ module Aws::IoTEvents
|
|
695
703
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
|
696
704
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.timer_name #=> String
|
697
705
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.seconds #=> Integer
|
706
|
+
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.duration_expression #=> String
|
698
707
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].clear_timer.timer_name #=> String
|
699
708
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].reset_timer.timer_name #=> String
|
700
709
|
# resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].lambda.function_arn #=> String
|
@@ -713,6 +722,7 @@ module Aws::IoTEvents
|
|
713
722
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
|
714
723
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.timer_name #=> String
|
715
724
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.seconds #=> Integer
|
725
|
+
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.duration_expression #=> String
|
716
726
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].clear_timer.timer_name #=> String
|
717
727
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].reset_timer.timer_name #=> String
|
718
728
|
# resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].lambda.function_arn #=> String
|
@@ -732,6 +742,7 @@ module Aws::IoTEvents
|
|
732
742
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
|
733
743
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.timer_name #=> String
|
734
744
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.seconds #=> Integer
|
745
|
+
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.duration_expression #=> String
|
735
746
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].clear_timer.timer_name #=> String
|
736
747
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].reset_timer.timer_name #=> String
|
737
748
|
# resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].lambda.function_arn #=> String
|
@@ -750,6 +761,7 @@ module Aws::IoTEvents
|
|
750
761
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
|
751
762
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.timer_name #=> String
|
752
763
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.seconds #=> Integer
|
764
|
+
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.duration_expression #=> String
|
753
765
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].clear_timer.timer_name #=> String
|
754
766
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].reset_timer.timer_name #=> String
|
755
767
|
# resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].lambda.function_arn #=> String
|
@@ -1120,7 +1132,8 @@ module Aws::IoTEvents
|
|
1120
1132
|
# },
|
1121
1133
|
# set_timer: {
|
1122
1134
|
# timer_name: "TimerName", # required
|
1123
|
-
# seconds: 1,
|
1135
|
+
# seconds: 1,
|
1136
|
+
# duration_expression: "VariableValue",
|
1124
1137
|
# },
|
1125
1138
|
# clear_timer: {
|
1126
1139
|
# timer_name: "TimerName", # required
|
@@ -1164,7 +1177,8 @@ module Aws::IoTEvents
|
|
1164
1177
|
# },
|
1165
1178
|
# set_timer: {
|
1166
1179
|
# timer_name: "TimerName", # required
|
1167
|
-
# seconds: 1,
|
1180
|
+
# seconds: 1,
|
1181
|
+
# duration_expression: "VariableValue",
|
1168
1182
|
# },
|
1169
1183
|
# clear_timer: {
|
1170
1184
|
# timer_name: "TimerName", # required
|
@@ -1211,7 +1225,8 @@ module Aws::IoTEvents
|
|
1211
1225
|
# },
|
1212
1226
|
# set_timer: {
|
1213
1227
|
# timer_name: "TimerName", # required
|
1214
|
-
# seconds: 1,
|
1228
|
+
# seconds: 1,
|
1229
|
+
# duration_expression: "VariableValue",
|
1215
1230
|
# },
|
1216
1231
|
# clear_timer: {
|
1217
1232
|
# timer_name: "TimerName", # required
|
@@ -1257,7 +1272,8 @@ module Aws::IoTEvents
|
|
1257
1272
|
# },
|
1258
1273
|
# set_timer: {
|
1259
1274
|
# timer_name: "TimerName", # required
|
1260
|
-
# seconds: 1,
|
1275
|
+
# seconds: 1,
|
1276
|
+
# duration_expression: "VariableValue",
|
1261
1277
|
# },
|
1262
1278
|
# clear_timer: {
|
1263
1279
|
# timer_name: "TimerName", # required
|
@@ -1371,7 +1387,7 @@ module Aws::IoTEvents
|
|
1371
1387
|
params: params,
|
1372
1388
|
config: config)
|
1373
1389
|
context[:gem_name] = 'aws-sdk-iotevents'
|
1374
|
-
context[:gem_version] = '1.
|
1390
|
+
context[:gem_version] = '1.10.0'
|
1375
1391
|
Seahorse::Client::Request.new(handlers, context)
|
1376
1392
|
end
|
1377
1393
|
|
@@ -369,7 +369,8 @@ module Aws::IoTEvents
|
|
369
369
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
370
370
|
|
371
371
|
SetTimerAction.add_member(:timer_name, Shapes::ShapeRef.new(shape: TimerName, required: true, location_name: "timerName"))
|
372
|
-
SetTimerAction.add_member(:seconds, Shapes::ShapeRef.new(shape: Seconds,
|
372
|
+
SetTimerAction.add_member(:seconds, Shapes::ShapeRef.new(shape: Seconds, deprecated: true, location_name: "seconds", metadata: {"deprecatedMessage"=>"seconds is deprecated. You can use durationExpression for SetTimerAction. The value of seconds can be used as a string expression for durationExpression."}))
|
373
|
+
SetTimerAction.add_member(:duration_expression, Shapes::ShapeRef.new(shape: VariableValue, location_name: "durationExpression"))
|
373
374
|
SetTimerAction.struct_class = Types::SetTimerAction
|
374
375
|
|
375
376
|
SetVariableAction.add_member(:variable_name, Shapes::ShapeRef.new(shape: VariableName, required: true, location_name: "variableName"))
|
@@ -26,7 +26,8 @@ module Aws::IoTEvents
|
|
26
26
|
# },
|
27
27
|
# set_timer: {
|
28
28
|
# timer_name: "TimerName", # required
|
29
|
-
# seconds: 1,
|
29
|
+
# seconds: 1,
|
30
|
+
# duration_expression: "VariableValue",
|
30
31
|
# },
|
31
32
|
# clear_timer: {
|
32
33
|
# timer_name: "TimerName", # required
|
@@ -186,7 +187,8 @@ module Aws::IoTEvents
|
|
186
187
|
# },
|
187
188
|
# set_timer: {
|
188
189
|
# timer_name: "TimerName", # required
|
189
|
-
# seconds: 1,
|
190
|
+
# seconds: 1,
|
191
|
+
# duration_expression: "VariableValue",
|
190
192
|
# },
|
191
193
|
# clear_timer: {
|
192
194
|
# timer_name: "TimerName", # required
|
@@ -230,7 +232,8 @@ module Aws::IoTEvents
|
|
230
232
|
# },
|
231
233
|
# set_timer: {
|
232
234
|
# timer_name: "TimerName", # required
|
233
|
-
# seconds: 1,
|
235
|
+
# seconds: 1,
|
236
|
+
# duration_expression: "VariableValue",
|
234
237
|
# },
|
235
238
|
# clear_timer: {
|
236
239
|
# timer_name: "TimerName", # required
|
@@ -277,7 +280,8 @@ module Aws::IoTEvents
|
|
277
280
|
# },
|
278
281
|
# set_timer: {
|
279
282
|
# timer_name: "TimerName", # required
|
280
|
-
# seconds: 1,
|
283
|
+
# seconds: 1,
|
284
|
+
# duration_expression: "VariableValue",
|
281
285
|
# },
|
282
286
|
# clear_timer: {
|
283
287
|
# timer_name: "TimerName", # required
|
@@ -323,7 +327,8 @@ module Aws::IoTEvents
|
|
323
327
|
# },
|
324
328
|
# set_timer: {
|
325
329
|
# timer_name: "TimerName", # required
|
326
|
-
# seconds: 1,
|
330
|
+
# seconds: 1,
|
331
|
+
# duration_expression: "VariableValue",
|
327
332
|
# },
|
328
333
|
# clear_timer: {
|
329
334
|
# timer_name: "TimerName", # required
|
@@ -713,7 +718,8 @@ module Aws::IoTEvents
|
|
713
718
|
# },
|
714
719
|
# set_timer: {
|
715
720
|
# timer_name: "TimerName", # required
|
716
|
-
# seconds: 1,
|
721
|
+
# seconds: 1,
|
722
|
+
# duration_expression: "VariableValue",
|
717
723
|
# },
|
718
724
|
# clear_timer: {
|
719
725
|
# timer_name: "TimerName", # required
|
@@ -757,7 +763,8 @@ module Aws::IoTEvents
|
|
757
763
|
# },
|
758
764
|
# set_timer: {
|
759
765
|
# timer_name: "TimerName", # required
|
760
|
-
# seconds: 1,
|
766
|
+
# seconds: 1,
|
767
|
+
# duration_expression: "VariableValue",
|
761
768
|
# },
|
762
769
|
# clear_timer: {
|
763
770
|
# timer_name: "TimerName", # required
|
@@ -804,7 +811,8 @@ module Aws::IoTEvents
|
|
804
811
|
# },
|
805
812
|
# set_timer: {
|
806
813
|
# timer_name: "TimerName", # required
|
807
|
-
# seconds: 1,
|
814
|
+
# seconds: 1,
|
815
|
+
# duration_expression: "VariableValue",
|
808
816
|
# },
|
809
817
|
# clear_timer: {
|
810
818
|
# timer_name: "TimerName", # required
|
@@ -850,7 +858,8 @@ module Aws::IoTEvents
|
|
850
858
|
# },
|
851
859
|
# set_timer: {
|
852
860
|
# timer_name: "TimerName", # required
|
853
|
-
# seconds: 1,
|
861
|
+
# seconds: 1,
|
862
|
+
# duration_expression: "VariableValue",
|
854
863
|
# },
|
855
864
|
# clear_timer: {
|
856
865
|
# timer_name: "TimerName", # required
|
@@ -989,7 +998,8 @@ module Aws::IoTEvents
|
|
989
998
|
# },
|
990
999
|
# set_timer: {
|
991
1000
|
# timer_name: "TimerName", # required
|
992
|
-
# seconds: 1,
|
1001
|
+
# seconds: 1,
|
1002
|
+
# duration_expression: "VariableValue",
|
993
1003
|
# },
|
994
1004
|
# clear_timer: {
|
995
1005
|
# timer_name: "TimerName", # required
|
@@ -1484,7 +1494,8 @@ module Aws::IoTEvents
|
|
1484
1494
|
# },
|
1485
1495
|
# set_timer: {
|
1486
1496
|
# timer_name: "TimerName", # required
|
1487
|
-
# seconds: 1,
|
1497
|
+
# seconds: 1,
|
1498
|
+
# duration_expression: "VariableValue",
|
1488
1499
|
# },
|
1489
1500
|
# clear_timer: {
|
1490
1501
|
# timer_name: "TimerName", # required
|
@@ -1547,7 +1558,8 @@ module Aws::IoTEvents
|
|
1547
1558
|
# },
|
1548
1559
|
# set_timer: {
|
1549
1560
|
# timer_name: "TimerName", # required
|
1550
|
-
# seconds: 1,
|
1561
|
+
# seconds: 1,
|
1562
|
+
# duration_expression: "VariableValue",
|
1551
1563
|
# },
|
1552
1564
|
# clear_timer: {
|
1553
1565
|
# timer_name: "TimerName", # required
|
@@ -1610,7 +1622,8 @@ module Aws::IoTEvents
|
|
1610
1622
|
# },
|
1611
1623
|
# set_timer: {
|
1612
1624
|
# timer_name: "TimerName", # required
|
1613
|
-
# seconds: 1,
|
1625
|
+
# seconds: 1,
|
1626
|
+
# duration_expression: "VariableValue",
|
1614
1627
|
# },
|
1615
1628
|
# clear_timer: {
|
1616
1629
|
# timer_name: "TimerName", # required
|
@@ -1654,7 +1667,8 @@ module Aws::IoTEvents
|
|
1654
1667
|
# },
|
1655
1668
|
# set_timer: {
|
1656
1669
|
# timer_name: "TimerName", # required
|
1657
|
-
# seconds: 1,
|
1670
|
+
# seconds: 1,
|
1671
|
+
# duration_expression: "VariableValue",
|
1658
1672
|
# },
|
1659
1673
|
# clear_timer: {
|
1660
1674
|
# timer_name: "TimerName", # required
|
@@ -1725,7 +1739,8 @@ module Aws::IoTEvents
|
|
1725
1739
|
include Aws::Structure
|
1726
1740
|
end
|
1727
1741
|
|
1728
|
-
# Information
|
1742
|
+
# Information required to reset the timer. The timer is reset to the
|
1743
|
+
# previously evaluated result of the duration.
|
1729
1744
|
#
|
1730
1745
|
# @note When making an API call, you may pass ResetTimerAction
|
1731
1746
|
# data as a hash:
|
@@ -1822,7 +1837,8 @@ module Aws::IoTEvents
|
|
1822
1837
|
#
|
1823
1838
|
# {
|
1824
1839
|
# timer_name: "TimerName", # required
|
1825
|
-
# seconds: 1,
|
1840
|
+
# seconds: 1,
|
1841
|
+
# duration_expression: "VariableValue",
|
1826
1842
|
# }
|
1827
1843
|
#
|
1828
1844
|
# @!attribute [rw] timer_name
|
@@ -1831,13 +1847,23 @@ module Aws::IoTEvents
|
|
1831
1847
|
#
|
1832
1848
|
# @!attribute [rw] seconds
|
1833
1849
|
# The number of seconds until the timer expires. The minimum value is
|
1834
|
-
# 60 seconds to ensure accuracy.
|
1835
|
-
# seconds.
|
1850
|
+
# 60 seconds to ensure accuracy.
|
1836
1851
|
# @return [Integer]
|
1837
1852
|
#
|
1853
|
+
# @!attribute [rw] duration_expression
|
1854
|
+
# The duration of the timer, in seconds. You can use a string
|
1855
|
+
# expression that includes numbers, variables
|
1856
|
+
# (`$variable.<variable-name>`), and input values
|
1857
|
+
# (`$input.<input-name>.<path-to-datum>`) as the duration. The range
|
1858
|
+
# of the duration is 1-31622400 seconds. To ensure accuracy, the
|
1859
|
+
# minimum duration is 60 seconds. The evaluated result of the duration
|
1860
|
+
# is rounded down to the nearest whole number.
|
1861
|
+
# @return [String]
|
1862
|
+
#
|
1838
1863
|
class SetTimerAction < Struct.new(
|
1839
1864
|
:timer_name,
|
1840
|
-
:seconds
|
1865
|
+
:seconds,
|
1866
|
+
:duration_expression)
|
1841
1867
|
include Aws::Structure
|
1842
1868
|
end
|
1843
1869
|
|
@@ -1882,7 +1908,7 @@ module Aws::IoTEvents
|
|
1882
1908
|
#
|
1883
1909
|
# @!attribute [rw] use_base_64
|
1884
1910
|
# Set this to TRUE if you want the data to be base-64 encoded before
|
1885
|
-
# it is written to the queue.
|
1911
|
+
# it is written to the queue.
|
1886
1912
|
# @return [Boolean]
|
1887
1913
|
#
|
1888
1914
|
class SqsAction < Struct.new(
|
@@ -1917,7 +1943,8 @@ module Aws::IoTEvents
|
|
1917
1943
|
# },
|
1918
1944
|
# set_timer: {
|
1919
1945
|
# timer_name: "TimerName", # required
|
1920
|
-
# seconds: 1,
|
1946
|
+
# seconds: 1,
|
1947
|
+
# duration_expression: "VariableValue",
|
1921
1948
|
# },
|
1922
1949
|
# clear_timer: {
|
1923
1950
|
# timer_name: "TimerName", # required
|
@@ -1961,7 +1988,8 @@ module Aws::IoTEvents
|
|
1961
1988
|
# },
|
1962
1989
|
# set_timer: {
|
1963
1990
|
# timer_name: "TimerName", # required
|
1964
|
-
# seconds: 1,
|
1991
|
+
# seconds: 1,
|
1992
|
+
# duration_expression: "VariableValue",
|
1965
1993
|
# },
|
1966
1994
|
# clear_timer: {
|
1967
1995
|
# timer_name: "TimerName", # required
|
@@ -2008,7 +2036,8 @@ module Aws::IoTEvents
|
|
2008
2036
|
# },
|
2009
2037
|
# set_timer: {
|
2010
2038
|
# timer_name: "TimerName", # required
|
2011
|
-
# seconds: 1,
|
2039
|
+
# seconds: 1,
|
2040
|
+
# duration_expression: "VariableValue",
|
2012
2041
|
# },
|
2013
2042
|
# clear_timer: {
|
2014
2043
|
# timer_name: "TimerName", # required
|
@@ -2054,7 +2083,8 @@ module Aws::IoTEvents
|
|
2054
2083
|
# },
|
2055
2084
|
# set_timer: {
|
2056
2085
|
# timer_name: "TimerName", # required
|
2057
|
-
# seconds: 1,
|
2086
|
+
# seconds: 1,
|
2087
|
+
# duration_expression: "VariableValue",
|
2058
2088
|
# },
|
2059
2089
|
# clear_timer: {
|
2060
2090
|
# timer_name: "TimerName", # required
|
@@ -2197,7 +2227,8 @@ module Aws::IoTEvents
|
|
2197
2227
|
# },
|
2198
2228
|
# set_timer: {
|
2199
2229
|
# timer_name: "TimerName", # required
|
2200
|
-
# seconds: 1,
|
2230
|
+
# seconds: 1,
|
2231
|
+
# duration_expression: "VariableValue",
|
2201
2232
|
# },
|
2202
2233
|
# clear_timer: {
|
2203
2234
|
# timer_name: "TimerName", # required
|
@@ -2312,7 +2343,8 @@ module Aws::IoTEvents
|
|
2312
2343
|
# },
|
2313
2344
|
# set_timer: {
|
2314
2345
|
# timer_name: "TimerName", # required
|
2315
|
-
# seconds: 1,
|
2346
|
+
# seconds: 1,
|
2347
|
+
# duration_expression: "VariableValue",
|
2316
2348
|
# },
|
2317
2349
|
# clear_timer: {
|
2318
2350
|
# timer_name: "TimerName", # required
|
@@ -2356,7 +2388,8 @@ module Aws::IoTEvents
|
|
2356
2388
|
# },
|
2357
2389
|
# set_timer: {
|
2358
2390
|
# timer_name: "TimerName", # required
|
2359
|
-
# seconds: 1,
|
2391
|
+
# seconds: 1,
|
2392
|
+
# duration_expression: "VariableValue",
|
2360
2393
|
# },
|
2361
2394
|
# clear_timer: {
|
2362
2395
|
# timer_name: "TimerName", # required
|
@@ -2403,7 +2436,8 @@ module Aws::IoTEvents
|
|
2403
2436
|
# },
|
2404
2437
|
# set_timer: {
|
2405
2438
|
# timer_name: "TimerName", # required
|
2406
|
-
# seconds: 1,
|
2439
|
+
# seconds: 1,
|
2440
|
+
# duration_expression: "VariableValue",
|
2407
2441
|
# },
|
2408
2442
|
# clear_timer: {
|
2409
2443
|
# timer_name: "TimerName", # required
|
@@ -2449,7 +2483,8 @@ module Aws::IoTEvents
|
|
2449
2483
|
# },
|
2450
2484
|
# set_timer: {
|
2451
2485
|
# timer_name: "TimerName", # required
|
2452
|
-
# seconds: 1,
|
2486
|
+
# seconds: 1,
|
2487
|
+
# duration_expression: "VariableValue",
|
2453
2488
|
# },
|
2454
2489
|
# clear_timer: {
|
2455
2490
|
# timer_name: "TimerName", # required
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotevents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -80,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
84
|
-
rubygems_version: 2.5.2.3
|
83
|
+
rubygems_version: 3.0.3
|
85
84
|
signing_key:
|
86
85
|
specification_version: 4
|
87
86
|
summary: AWS SDK for Ruby - AWS IoT Events
|