aws-sdk-iotevents 1.10.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fea5e1a49e3e41257dfd304870d3de0bd475edf1d39272728b4ffd3438a54076
4
- data.tar.gz: e067b60f680a63fee8757d28ad78d3df953c8d3075eac79a1b335f27f36abdca
3
+ metadata.gz: eccd1efdf185552da059ab9dfabf06ba6935e68ac6862f3d8164932205205d07
4
+ data.tar.gz: 19d8070ccb3ae735cc5114186800bff438abb5cfe80c23b1c8f465c5448d39c5
5
5
  SHA512:
6
- metadata.gz: 92e97f2275160ae6ed4743810374d6f32573c002f89935fc0ddb7d0ba041271e9ec29f26176d7c1444f01e4ceea02ce2e1c5376bbf928fa959704b4f008ee350
7
- data.tar.gz: 21d3707c51dbeeb912d1aaad7bbc2b982356e108699bb02cdc25dc8dcc95ce2873290e2c66a0f518e657a464e4d5a053b290f0b719964075f2a33216eb5f00ac
6
+ metadata.gz: cb1e6b85df598473b90e55a1353ec337be3b4aa424ea93af39662f6aa94b4da20343cf7a08c44768c861a96cca8ac372b1dd0a1f7ad11cf1d661cabd7a116889
7
+ data.tar.gz: 945d25ef13bdc0ee810a5b187885e08dbba621340f21a7126f343950b4af0155ad35de5a07a1f7f25df620fd57510a9b6be24247f0d596332203cc85a50a714a
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-iotevents/customizations'
45
45
  # @service
46
46
  module Aws::IoTEvents
47
47
 
48
- GEM_VERSION = '1.10.0'
48
+ GEM_VERSION = '1.15.0'
49
49
 
50
50
  end
@@ -105,7 +105,7 @@ module Aws::IoTEvents
105
105
  # @option options [required, String] :region
106
106
  # The AWS region to connect to. The configured `:region` is
107
107
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
109
109
  #
110
110
  # * `Aws.config[:region]`
111
111
  # * `ENV['AWS_REGION']`
@@ -161,7 +161,7 @@ module Aws::IoTEvents
161
161
  # @option options [String] :endpoint
162
162
  # The client endpoint is normally constructed from the `:region`
163
163
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
165
165
  #
166
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +176,7 @@ module Aws::IoTEvents
176
176
  # requests fetching endpoints information. Defaults to 60 sec.
177
177
  #
178
178
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
179
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
180
  #
181
181
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
182
  # The log formatter.
@@ -269,8 +269,7 @@ module Aws::IoTEvents
269
269
  #
270
270
  # @option options [Integer] :http_read_timeout (60) The default
271
271
  # number of seconds to wait for response data. This value can
272
- # safely be set
273
- # per-request on the session yielded by {#session_for}.
272
+ # safely be set per-request on the session.
274
273
  #
275
274
  # @option options [Float] :http_idle_timeout (5) The number of
276
275
  # seconds a connection is allowed to sit idle before it is
@@ -282,7 +281,7 @@ module Aws::IoTEvents
282
281
  # request body. This option has no effect unless the request has
283
282
  # "Expect" header set to "100-continue". Defaults to `nil` which
284
283
  # disables this behaviour. This value can safely be set per
285
- # request on the session yielded by {#session_for}.
284
+ # request on the session.
286
285
  #
287
286
  # @option options [Boolean] :http_wire_trace (false) When `true`,
288
287
  # HTTP debug output will be sent to the `:logger`.
@@ -364,9 +363,17 @@ module Aws::IoTEvents
364
363
  # },
365
364
  # sns: {
366
365
  # target_arn: "AmazonResourceName", # required
366
+ # payload: {
367
+ # content_expression: "ContentExpression", # required
368
+ # type: "STRING", # required, accepts STRING, JSON
369
+ # },
367
370
  # },
368
371
  # iot_topic_publish: {
369
372
  # mqtt_topic: "MQTTTopic", # required
373
+ # payload: {
374
+ # content_expression: "ContentExpression", # required
375
+ # type: "STRING", # required, accepts STRING, JSON
376
+ # },
370
377
  # },
371
378
  # set_timer: {
372
379
  # timer_name: "TimerName", # required
@@ -381,17 +388,74 @@ module Aws::IoTEvents
381
388
  # },
382
389
  # lambda: {
383
390
  # function_arn: "AmazonResourceName", # required
391
+ # payload: {
392
+ # content_expression: "ContentExpression", # required
393
+ # type: "STRING", # required, accepts STRING, JSON
394
+ # },
384
395
  # },
385
396
  # iot_events: {
386
397
  # input_name: "InputName", # required
398
+ # payload: {
399
+ # content_expression: "ContentExpression", # required
400
+ # type: "STRING", # required, accepts STRING, JSON
401
+ # },
387
402
  # },
388
403
  # sqs: {
389
404
  # queue_url: "QueueUrl", # required
390
405
  # use_base_64: false,
406
+ # payload: {
407
+ # content_expression: "ContentExpression", # required
408
+ # type: "STRING", # required, accepts STRING, JSON
409
+ # },
391
410
  # },
392
411
  # firehose: {
393
412
  # delivery_stream_name: "DeliveryStreamName", # required
394
413
  # separator: "FirehoseSeparator",
414
+ # payload: {
415
+ # content_expression: "ContentExpression", # required
416
+ # type: "STRING", # required, accepts STRING, JSON
417
+ # },
418
+ # },
419
+ # dynamo_db: {
420
+ # hash_key_type: "DynamoKeyType",
421
+ # hash_key_field: "DynamoKeyField", # required
422
+ # hash_key_value: "DynamoKeyValue", # required
423
+ # range_key_type: "DynamoKeyType",
424
+ # range_key_field: "DynamoKeyField",
425
+ # range_key_value: "DynamoKeyValue",
426
+ # operation: "DynamoOperation",
427
+ # payload_field: "DynamoKeyField",
428
+ # table_name: "DynamoTableName", # required
429
+ # payload: {
430
+ # content_expression: "ContentExpression", # required
431
+ # type: "STRING", # required, accepts STRING, JSON
432
+ # },
433
+ # },
434
+ # dynamo_d_bv_2: {
435
+ # table_name: "DynamoTableName", # required
436
+ # payload: {
437
+ # content_expression: "ContentExpression", # required
438
+ # type: "STRING", # required, accepts STRING, JSON
439
+ # },
440
+ # },
441
+ # iot_site_wise: {
442
+ # entry_id: "AssetPropertyEntryId",
443
+ # asset_id: "AssetId",
444
+ # property_id: "AssetPropertyId",
445
+ # property_alias: "AssetPropertyAlias",
446
+ # property_value: { # required
447
+ # value: { # required
448
+ # string_value: "AssetPropertyStringValue",
449
+ # integer_value: "AssetPropertyIntegerValue",
450
+ # double_value: "AssetPropertyDoubleValue",
451
+ # boolean_value: "AssetPropertyBooleanValue",
452
+ # },
453
+ # timestamp: {
454
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
455
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
456
+ # },
457
+ # quality: "AssetPropertyQuality",
458
+ # },
395
459
  # },
396
460
  # },
397
461
  # ],
@@ -409,9 +473,17 @@ module Aws::IoTEvents
409
473
  # },
410
474
  # sns: {
411
475
  # target_arn: "AmazonResourceName", # required
476
+ # payload: {
477
+ # content_expression: "ContentExpression", # required
478
+ # type: "STRING", # required, accepts STRING, JSON
479
+ # },
412
480
  # },
413
481
  # iot_topic_publish: {
414
482
  # mqtt_topic: "MQTTTopic", # required
483
+ # payload: {
484
+ # content_expression: "ContentExpression", # required
485
+ # type: "STRING", # required, accepts STRING, JSON
486
+ # },
415
487
  # },
416
488
  # set_timer: {
417
489
  # timer_name: "TimerName", # required
@@ -426,17 +498,74 @@ module Aws::IoTEvents
426
498
  # },
427
499
  # lambda: {
428
500
  # function_arn: "AmazonResourceName", # required
501
+ # payload: {
502
+ # content_expression: "ContentExpression", # required
503
+ # type: "STRING", # required, accepts STRING, JSON
504
+ # },
429
505
  # },
430
506
  # iot_events: {
431
507
  # input_name: "InputName", # required
508
+ # payload: {
509
+ # content_expression: "ContentExpression", # required
510
+ # type: "STRING", # required, accepts STRING, JSON
511
+ # },
432
512
  # },
433
513
  # sqs: {
434
514
  # queue_url: "QueueUrl", # required
435
515
  # use_base_64: false,
516
+ # payload: {
517
+ # content_expression: "ContentExpression", # required
518
+ # type: "STRING", # required, accepts STRING, JSON
519
+ # },
436
520
  # },
437
521
  # firehose: {
438
522
  # delivery_stream_name: "DeliveryStreamName", # required
439
523
  # separator: "FirehoseSeparator",
524
+ # payload: {
525
+ # content_expression: "ContentExpression", # required
526
+ # type: "STRING", # required, accepts STRING, JSON
527
+ # },
528
+ # },
529
+ # dynamo_db: {
530
+ # hash_key_type: "DynamoKeyType",
531
+ # hash_key_field: "DynamoKeyField", # required
532
+ # hash_key_value: "DynamoKeyValue", # required
533
+ # range_key_type: "DynamoKeyType",
534
+ # range_key_field: "DynamoKeyField",
535
+ # range_key_value: "DynamoKeyValue",
536
+ # operation: "DynamoOperation",
537
+ # payload_field: "DynamoKeyField",
538
+ # table_name: "DynamoTableName", # required
539
+ # payload: {
540
+ # content_expression: "ContentExpression", # required
541
+ # type: "STRING", # required, accepts STRING, JSON
542
+ # },
543
+ # },
544
+ # dynamo_d_bv_2: {
545
+ # table_name: "DynamoTableName", # required
546
+ # payload: {
547
+ # content_expression: "ContentExpression", # required
548
+ # type: "STRING", # required, accepts STRING, JSON
549
+ # },
550
+ # },
551
+ # iot_site_wise: {
552
+ # entry_id: "AssetPropertyEntryId",
553
+ # asset_id: "AssetId",
554
+ # property_id: "AssetPropertyId",
555
+ # property_alias: "AssetPropertyAlias",
556
+ # property_value: { # required
557
+ # value: { # required
558
+ # string_value: "AssetPropertyStringValue",
559
+ # integer_value: "AssetPropertyIntegerValue",
560
+ # double_value: "AssetPropertyDoubleValue",
561
+ # boolean_value: "AssetPropertyBooleanValue",
562
+ # },
563
+ # timestamp: {
564
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
565
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
566
+ # },
567
+ # quality: "AssetPropertyQuality",
568
+ # },
440
569
  # },
441
570
  # },
442
571
  # ],
@@ -457,9 +586,17 @@ module Aws::IoTEvents
457
586
  # },
458
587
  # sns: {
459
588
  # target_arn: "AmazonResourceName", # required
589
+ # payload: {
590
+ # content_expression: "ContentExpression", # required
591
+ # type: "STRING", # required, accepts STRING, JSON
592
+ # },
460
593
  # },
461
594
  # iot_topic_publish: {
462
595
  # mqtt_topic: "MQTTTopic", # required
596
+ # payload: {
597
+ # content_expression: "ContentExpression", # required
598
+ # type: "STRING", # required, accepts STRING, JSON
599
+ # },
463
600
  # },
464
601
  # set_timer: {
465
602
  # timer_name: "TimerName", # required
@@ -474,17 +611,74 @@ module Aws::IoTEvents
474
611
  # },
475
612
  # lambda: {
476
613
  # function_arn: "AmazonResourceName", # required
614
+ # payload: {
615
+ # content_expression: "ContentExpression", # required
616
+ # type: "STRING", # required, accepts STRING, JSON
617
+ # },
477
618
  # },
478
619
  # iot_events: {
479
620
  # input_name: "InputName", # required
621
+ # payload: {
622
+ # content_expression: "ContentExpression", # required
623
+ # type: "STRING", # required, accepts STRING, JSON
624
+ # },
480
625
  # },
481
626
  # sqs: {
482
627
  # queue_url: "QueueUrl", # required
483
628
  # use_base_64: false,
629
+ # payload: {
630
+ # content_expression: "ContentExpression", # required
631
+ # type: "STRING", # required, accepts STRING, JSON
632
+ # },
484
633
  # },
485
634
  # firehose: {
486
635
  # delivery_stream_name: "DeliveryStreamName", # required
487
636
  # separator: "FirehoseSeparator",
637
+ # payload: {
638
+ # content_expression: "ContentExpression", # required
639
+ # type: "STRING", # required, accepts STRING, JSON
640
+ # },
641
+ # },
642
+ # dynamo_db: {
643
+ # hash_key_type: "DynamoKeyType",
644
+ # hash_key_field: "DynamoKeyField", # required
645
+ # hash_key_value: "DynamoKeyValue", # required
646
+ # range_key_type: "DynamoKeyType",
647
+ # range_key_field: "DynamoKeyField",
648
+ # range_key_value: "DynamoKeyValue",
649
+ # operation: "DynamoOperation",
650
+ # payload_field: "DynamoKeyField",
651
+ # table_name: "DynamoTableName", # required
652
+ # payload: {
653
+ # content_expression: "ContentExpression", # required
654
+ # type: "STRING", # required, accepts STRING, JSON
655
+ # },
656
+ # },
657
+ # dynamo_d_bv_2: {
658
+ # table_name: "DynamoTableName", # required
659
+ # payload: {
660
+ # content_expression: "ContentExpression", # required
661
+ # type: "STRING", # required, accepts STRING, JSON
662
+ # },
663
+ # },
664
+ # iot_site_wise: {
665
+ # entry_id: "AssetPropertyEntryId",
666
+ # asset_id: "AssetId",
667
+ # property_id: "AssetPropertyId",
668
+ # property_alias: "AssetPropertyAlias",
669
+ # property_value: { # required
670
+ # value: { # required
671
+ # string_value: "AssetPropertyStringValue",
672
+ # integer_value: "AssetPropertyIntegerValue",
673
+ # double_value: "AssetPropertyDoubleValue",
674
+ # boolean_value: "AssetPropertyBooleanValue",
675
+ # },
676
+ # timestamp: {
677
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
678
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
679
+ # },
680
+ # quality: "AssetPropertyQuality",
681
+ # },
488
682
  # },
489
683
  # },
490
684
  # ],
@@ -504,9 +698,17 @@ module Aws::IoTEvents
504
698
  # },
505
699
  # sns: {
506
700
  # target_arn: "AmazonResourceName", # required
701
+ # payload: {
702
+ # content_expression: "ContentExpression", # required
703
+ # type: "STRING", # required, accepts STRING, JSON
704
+ # },
507
705
  # },
508
706
  # iot_topic_publish: {
509
707
  # mqtt_topic: "MQTTTopic", # required
708
+ # payload: {
709
+ # content_expression: "ContentExpression", # required
710
+ # type: "STRING", # required, accepts STRING, JSON
711
+ # },
510
712
  # },
511
713
  # set_timer: {
512
714
  # timer_name: "TimerName", # required
@@ -521,17 +723,74 @@ module Aws::IoTEvents
521
723
  # },
522
724
  # lambda: {
523
725
  # function_arn: "AmazonResourceName", # required
726
+ # payload: {
727
+ # content_expression: "ContentExpression", # required
728
+ # type: "STRING", # required, accepts STRING, JSON
729
+ # },
524
730
  # },
525
731
  # iot_events: {
526
732
  # input_name: "InputName", # required
733
+ # payload: {
734
+ # content_expression: "ContentExpression", # required
735
+ # type: "STRING", # required, accepts STRING, JSON
736
+ # },
527
737
  # },
528
738
  # sqs: {
529
739
  # queue_url: "QueueUrl", # required
530
740
  # use_base_64: false,
741
+ # payload: {
742
+ # content_expression: "ContentExpression", # required
743
+ # type: "STRING", # required, accepts STRING, JSON
744
+ # },
531
745
  # },
532
746
  # firehose: {
533
747
  # delivery_stream_name: "DeliveryStreamName", # required
534
748
  # separator: "FirehoseSeparator",
749
+ # payload: {
750
+ # content_expression: "ContentExpression", # required
751
+ # type: "STRING", # required, accepts STRING, JSON
752
+ # },
753
+ # },
754
+ # dynamo_db: {
755
+ # hash_key_type: "DynamoKeyType",
756
+ # hash_key_field: "DynamoKeyField", # required
757
+ # hash_key_value: "DynamoKeyValue", # required
758
+ # range_key_type: "DynamoKeyType",
759
+ # range_key_field: "DynamoKeyField",
760
+ # range_key_value: "DynamoKeyValue",
761
+ # operation: "DynamoOperation",
762
+ # payload_field: "DynamoKeyField",
763
+ # table_name: "DynamoTableName", # required
764
+ # payload: {
765
+ # content_expression: "ContentExpression", # required
766
+ # type: "STRING", # required, accepts STRING, JSON
767
+ # },
768
+ # },
769
+ # dynamo_d_bv_2: {
770
+ # table_name: "DynamoTableName", # required
771
+ # payload: {
772
+ # content_expression: "ContentExpression", # required
773
+ # type: "STRING", # required, accepts STRING, JSON
774
+ # },
775
+ # },
776
+ # iot_site_wise: {
777
+ # entry_id: "AssetPropertyEntryId",
778
+ # asset_id: "AssetId",
779
+ # property_id: "AssetPropertyId",
780
+ # property_alias: "AssetPropertyAlias",
781
+ # property_value: { # required
782
+ # value: { # required
783
+ # string_value: "AssetPropertyStringValue",
784
+ # integer_value: "AssetPropertyIntegerValue",
785
+ # double_value: "AssetPropertyDoubleValue",
786
+ # boolean_value: "AssetPropertyBooleanValue",
787
+ # },
788
+ # timestamp: {
789
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
790
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
791
+ # },
792
+ # quality: "AssetPropertyQuality",
793
+ # },
535
794
  # },
536
795
  # },
537
796
  # ],
@@ -700,18 +959,55 @@ module Aws::IoTEvents
700
959
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_variable.variable_name #=> String
701
960
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_variable.value #=> String
702
961
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sns.target_arn #=> String
962
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sns.payload.content_expression #=> String
963
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sns.payload.type #=> String, one of "STRING", "JSON"
703
964
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
965
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_topic_publish.payload.content_expression #=> String
966
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_topic_publish.payload.type #=> String, one of "STRING", "JSON"
704
967
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.timer_name #=> String
705
968
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.seconds #=> Integer
706
969
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].set_timer.duration_expression #=> String
707
970
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].clear_timer.timer_name #=> String
708
971
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].reset_timer.timer_name #=> String
709
972
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].lambda.function_arn #=> String
973
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].lambda.payload.content_expression #=> String
974
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].lambda.payload.type #=> String, one of "STRING", "JSON"
710
975
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_events.input_name #=> String
976
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_events.payload.content_expression #=> String
977
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_events.payload.type #=> String, one of "STRING", "JSON"
711
978
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sqs.queue_url #=> String
712
979
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sqs.use_base_64 #=> Boolean
980
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sqs.payload.content_expression #=> String
981
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].sqs.payload.type #=> String, one of "STRING", "JSON"
713
982
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].firehose.delivery_stream_name #=> String
714
983
  # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].firehose.separator #=> String
984
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].firehose.payload.content_expression #=> String
985
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].firehose.payload.type #=> String, one of "STRING", "JSON"
986
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.hash_key_type #=> String
987
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.hash_key_field #=> String
988
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.hash_key_value #=> String
989
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.range_key_type #=> String
990
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.range_key_field #=> String
991
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.range_key_value #=> String
992
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.operation #=> String
993
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.payload_field #=> String
994
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.table_name #=> String
995
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.payload.content_expression #=> String
996
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_db.payload.type #=> String, one of "STRING", "JSON"
997
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_d_bv_2.table_name #=> String
998
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_d_bv_2.payload.content_expression #=> String
999
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].dynamo_d_bv_2.payload.type #=> String, one of "STRING", "JSON"
1000
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.entry_id #=> String
1001
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.asset_id #=> String
1002
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_id #=> String
1003
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_alias #=> String
1004
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.value.string_value #=> String
1005
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.value.integer_value #=> String
1006
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.value.double_value #=> String
1007
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.value.boolean_value #=> String
1008
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.timestamp.time_in_seconds #=> String
1009
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.timestamp.offset_in_nanos #=> String
1010
+ # resp.detector_model.detector_model_definition.states[0].on_input.events[0].actions[0].iot_site_wise.property_value.quality #=> String
715
1011
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events #=> Array
716
1012
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].event_name #=> String
717
1013
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].condition #=> String
@@ -719,18 +1015,55 @@ module Aws::IoTEvents
719
1015
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_variable.variable_name #=> String
720
1016
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_variable.value #=> String
721
1017
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sns.target_arn #=> String
1018
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sns.payload.content_expression #=> String
1019
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sns.payload.type #=> String, one of "STRING", "JSON"
722
1020
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
1021
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_topic_publish.payload.content_expression #=> String
1022
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_topic_publish.payload.type #=> String, one of "STRING", "JSON"
723
1023
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.timer_name #=> String
724
1024
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.seconds #=> Integer
725
1025
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].set_timer.duration_expression #=> String
726
1026
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].clear_timer.timer_name #=> String
727
1027
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].reset_timer.timer_name #=> String
728
1028
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].lambda.function_arn #=> String
1029
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].lambda.payload.content_expression #=> String
1030
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].lambda.payload.type #=> String, one of "STRING", "JSON"
729
1031
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_events.input_name #=> String
1032
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_events.payload.content_expression #=> String
1033
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_events.payload.type #=> String, one of "STRING", "JSON"
730
1034
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sqs.queue_url #=> String
731
1035
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sqs.use_base_64 #=> Boolean
1036
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sqs.payload.content_expression #=> String
1037
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].sqs.payload.type #=> String, one of "STRING", "JSON"
732
1038
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].firehose.delivery_stream_name #=> String
733
1039
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].firehose.separator #=> String
1040
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].firehose.payload.content_expression #=> String
1041
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].firehose.payload.type #=> String, one of "STRING", "JSON"
1042
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.hash_key_type #=> String
1043
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.hash_key_field #=> String
1044
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.hash_key_value #=> String
1045
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.range_key_type #=> String
1046
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.range_key_field #=> String
1047
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.range_key_value #=> String
1048
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.operation #=> String
1049
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.payload_field #=> String
1050
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.table_name #=> String
1051
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.payload.content_expression #=> String
1052
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_db.payload.type #=> String, one of "STRING", "JSON"
1053
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_d_bv_2.table_name #=> String
1054
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_d_bv_2.payload.content_expression #=> String
1055
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].dynamo_d_bv_2.payload.type #=> String, one of "STRING", "JSON"
1056
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.entry_id #=> String
1057
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.asset_id #=> String
1058
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_id #=> String
1059
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_alias #=> String
1060
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.value.string_value #=> String
1061
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.value.integer_value #=> String
1062
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.value.double_value #=> String
1063
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.value.boolean_value #=> String
1064
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.timestamp.time_in_seconds #=> String
1065
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.timestamp.offset_in_nanos #=> String
1066
+ # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].actions[0].iot_site_wise.property_value.quality #=> String
734
1067
  # resp.detector_model.detector_model_definition.states[0].on_input.transition_events[0].next_state #=> String
735
1068
  # resp.detector_model.detector_model_definition.states[0].on_enter.events #=> Array
736
1069
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].event_name #=> String
@@ -739,18 +1072,55 @@ module Aws::IoTEvents
739
1072
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_variable.variable_name #=> String
740
1073
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_variable.value #=> String
741
1074
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sns.target_arn #=> String
1075
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sns.payload.content_expression #=> String
1076
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sns.payload.type #=> String, one of "STRING", "JSON"
742
1077
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
1078
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_topic_publish.payload.content_expression #=> String
1079
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_topic_publish.payload.type #=> String, one of "STRING", "JSON"
743
1080
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.timer_name #=> String
744
1081
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.seconds #=> Integer
745
1082
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].set_timer.duration_expression #=> String
746
1083
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].clear_timer.timer_name #=> String
747
1084
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].reset_timer.timer_name #=> String
748
1085
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].lambda.function_arn #=> String
1086
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].lambda.payload.content_expression #=> String
1087
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].lambda.payload.type #=> String, one of "STRING", "JSON"
749
1088
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_events.input_name #=> String
1089
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_events.payload.content_expression #=> String
1090
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_events.payload.type #=> String, one of "STRING", "JSON"
750
1091
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sqs.queue_url #=> String
751
1092
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sqs.use_base_64 #=> Boolean
1093
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sqs.payload.content_expression #=> String
1094
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].sqs.payload.type #=> String, one of "STRING", "JSON"
752
1095
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].firehose.delivery_stream_name #=> String
753
1096
  # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].firehose.separator #=> String
1097
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].firehose.payload.content_expression #=> String
1098
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].firehose.payload.type #=> String, one of "STRING", "JSON"
1099
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.hash_key_type #=> String
1100
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.hash_key_field #=> String
1101
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.hash_key_value #=> String
1102
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.range_key_type #=> String
1103
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.range_key_field #=> String
1104
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.range_key_value #=> String
1105
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.operation #=> String
1106
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.payload_field #=> String
1107
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.table_name #=> String
1108
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.payload.content_expression #=> String
1109
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_db.payload.type #=> String, one of "STRING", "JSON"
1110
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_d_bv_2.table_name #=> String
1111
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_d_bv_2.payload.content_expression #=> String
1112
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].dynamo_d_bv_2.payload.type #=> String, one of "STRING", "JSON"
1113
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.entry_id #=> String
1114
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.asset_id #=> String
1115
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_id #=> String
1116
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_alias #=> String
1117
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.value.string_value #=> String
1118
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.value.integer_value #=> String
1119
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.value.double_value #=> String
1120
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.value.boolean_value #=> String
1121
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.timestamp.time_in_seconds #=> String
1122
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.timestamp.offset_in_nanos #=> String
1123
+ # resp.detector_model.detector_model_definition.states[0].on_enter.events[0].actions[0].iot_site_wise.property_value.quality #=> String
754
1124
  # resp.detector_model.detector_model_definition.states[0].on_exit.events #=> Array
755
1125
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].event_name #=> String
756
1126
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].condition #=> String
@@ -758,18 +1128,55 @@ module Aws::IoTEvents
758
1128
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_variable.variable_name #=> String
759
1129
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_variable.value #=> String
760
1130
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sns.target_arn #=> String
1131
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sns.payload.content_expression #=> String
1132
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sns.payload.type #=> String, one of "STRING", "JSON"
761
1133
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_topic_publish.mqtt_topic #=> String
1134
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_topic_publish.payload.content_expression #=> String
1135
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_topic_publish.payload.type #=> String, one of "STRING", "JSON"
762
1136
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.timer_name #=> String
763
1137
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.seconds #=> Integer
764
1138
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].set_timer.duration_expression #=> String
765
1139
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].clear_timer.timer_name #=> String
766
1140
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].reset_timer.timer_name #=> String
767
1141
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].lambda.function_arn #=> String
1142
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].lambda.payload.content_expression #=> String
1143
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].lambda.payload.type #=> String, one of "STRING", "JSON"
768
1144
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_events.input_name #=> String
1145
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_events.payload.content_expression #=> String
1146
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_events.payload.type #=> String, one of "STRING", "JSON"
769
1147
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sqs.queue_url #=> String
770
1148
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sqs.use_base_64 #=> Boolean
1149
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sqs.payload.content_expression #=> String
1150
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].sqs.payload.type #=> String, one of "STRING", "JSON"
771
1151
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].firehose.delivery_stream_name #=> String
772
1152
  # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].firehose.separator #=> String
1153
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].firehose.payload.content_expression #=> String
1154
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].firehose.payload.type #=> String, one of "STRING", "JSON"
1155
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.hash_key_type #=> String
1156
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.hash_key_field #=> String
1157
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.hash_key_value #=> String
1158
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.range_key_type #=> String
1159
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.range_key_field #=> String
1160
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.range_key_value #=> String
1161
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.operation #=> String
1162
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.payload_field #=> String
1163
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.table_name #=> String
1164
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.payload.content_expression #=> String
1165
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_db.payload.type #=> String, one of "STRING", "JSON"
1166
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_d_bv_2.table_name #=> String
1167
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_d_bv_2.payload.content_expression #=> String
1168
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].dynamo_d_bv_2.payload.type #=> String, one of "STRING", "JSON"
1169
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.entry_id #=> String
1170
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.asset_id #=> String
1171
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_id #=> String
1172
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_alias #=> String
1173
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.value.string_value #=> String
1174
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.value.integer_value #=> String
1175
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.value.double_value #=> String
1176
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.value.boolean_value #=> String
1177
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.timestamp.time_in_seconds #=> String
1178
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.timestamp.offset_in_nanos #=> String
1179
+ # resp.detector_model.detector_model_definition.states[0].on_exit.events[0].actions[0].iot_site_wise.property_value.quality #=> String
773
1180
  # resp.detector_model.detector_model_definition.initial_state_name #=> String
774
1181
  # resp.detector_model.detector_model_configuration.detector_model_name #=> String
775
1182
  # resp.detector_model.detector_model_configuration.detector_model_version #=> String
@@ -1126,9 +1533,17 @@ module Aws::IoTEvents
1126
1533
  # },
1127
1534
  # sns: {
1128
1535
  # target_arn: "AmazonResourceName", # required
1536
+ # payload: {
1537
+ # content_expression: "ContentExpression", # required
1538
+ # type: "STRING", # required, accepts STRING, JSON
1539
+ # },
1129
1540
  # },
1130
1541
  # iot_topic_publish: {
1131
1542
  # mqtt_topic: "MQTTTopic", # required
1543
+ # payload: {
1544
+ # content_expression: "ContentExpression", # required
1545
+ # type: "STRING", # required, accepts STRING, JSON
1546
+ # },
1132
1547
  # },
1133
1548
  # set_timer: {
1134
1549
  # timer_name: "TimerName", # required
@@ -1143,17 +1558,74 @@ module Aws::IoTEvents
1143
1558
  # },
1144
1559
  # lambda: {
1145
1560
  # function_arn: "AmazonResourceName", # required
1561
+ # payload: {
1562
+ # content_expression: "ContentExpression", # required
1563
+ # type: "STRING", # required, accepts STRING, JSON
1564
+ # },
1146
1565
  # },
1147
1566
  # iot_events: {
1148
1567
  # input_name: "InputName", # required
1568
+ # payload: {
1569
+ # content_expression: "ContentExpression", # required
1570
+ # type: "STRING", # required, accepts STRING, JSON
1571
+ # },
1149
1572
  # },
1150
1573
  # sqs: {
1151
1574
  # queue_url: "QueueUrl", # required
1152
1575
  # use_base_64: false,
1576
+ # payload: {
1577
+ # content_expression: "ContentExpression", # required
1578
+ # type: "STRING", # required, accepts STRING, JSON
1579
+ # },
1153
1580
  # },
1154
1581
  # firehose: {
1155
1582
  # delivery_stream_name: "DeliveryStreamName", # required
1156
1583
  # separator: "FirehoseSeparator",
1584
+ # payload: {
1585
+ # content_expression: "ContentExpression", # required
1586
+ # type: "STRING", # required, accepts STRING, JSON
1587
+ # },
1588
+ # },
1589
+ # dynamo_db: {
1590
+ # hash_key_type: "DynamoKeyType",
1591
+ # hash_key_field: "DynamoKeyField", # required
1592
+ # hash_key_value: "DynamoKeyValue", # required
1593
+ # range_key_type: "DynamoKeyType",
1594
+ # range_key_field: "DynamoKeyField",
1595
+ # range_key_value: "DynamoKeyValue",
1596
+ # operation: "DynamoOperation",
1597
+ # payload_field: "DynamoKeyField",
1598
+ # table_name: "DynamoTableName", # required
1599
+ # payload: {
1600
+ # content_expression: "ContentExpression", # required
1601
+ # type: "STRING", # required, accepts STRING, JSON
1602
+ # },
1603
+ # },
1604
+ # dynamo_d_bv_2: {
1605
+ # table_name: "DynamoTableName", # required
1606
+ # payload: {
1607
+ # content_expression: "ContentExpression", # required
1608
+ # type: "STRING", # required, accepts STRING, JSON
1609
+ # },
1610
+ # },
1611
+ # iot_site_wise: {
1612
+ # entry_id: "AssetPropertyEntryId",
1613
+ # asset_id: "AssetId",
1614
+ # property_id: "AssetPropertyId",
1615
+ # property_alias: "AssetPropertyAlias",
1616
+ # property_value: { # required
1617
+ # value: { # required
1618
+ # string_value: "AssetPropertyStringValue",
1619
+ # integer_value: "AssetPropertyIntegerValue",
1620
+ # double_value: "AssetPropertyDoubleValue",
1621
+ # boolean_value: "AssetPropertyBooleanValue",
1622
+ # },
1623
+ # timestamp: {
1624
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
1625
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
1626
+ # },
1627
+ # quality: "AssetPropertyQuality",
1628
+ # },
1157
1629
  # },
1158
1630
  # },
1159
1631
  # ],
@@ -1171,9 +1643,17 @@ module Aws::IoTEvents
1171
1643
  # },
1172
1644
  # sns: {
1173
1645
  # target_arn: "AmazonResourceName", # required
1646
+ # payload: {
1647
+ # content_expression: "ContentExpression", # required
1648
+ # type: "STRING", # required, accepts STRING, JSON
1649
+ # },
1174
1650
  # },
1175
1651
  # iot_topic_publish: {
1176
1652
  # mqtt_topic: "MQTTTopic", # required
1653
+ # payload: {
1654
+ # content_expression: "ContentExpression", # required
1655
+ # type: "STRING", # required, accepts STRING, JSON
1656
+ # },
1177
1657
  # },
1178
1658
  # set_timer: {
1179
1659
  # timer_name: "TimerName", # required
@@ -1188,17 +1668,74 @@ module Aws::IoTEvents
1188
1668
  # },
1189
1669
  # lambda: {
1190
1670
  # function_arn: "AmazonResourceName", # required
1671
+ # payload: {
1672
+ # content_expression: "ContentExpression", # required
1673
+ # type: "STRING", # required, accepts STRING, JSON
1674
+ # },
1191
1675
  # },
1192
1676
  # iot_events: {
1193
1677
  # input_name: "InputName", # required
1678
+ # payload: {
1679
+ # content_expression: "ContentExpression", # required
1680
+ # type: "STRING", # required, accepts STRING, JSON
1681
+ # },
1194
1682
  # },
1195
1683
  # sqs: {
1196
1684
  # queue_url: "QueueUrl", # required
1197
1685
  # use_base_64: false,
1686
+ # payload: {
1687
+ # content_expression: "ContentExpression", # required
1688
+ # type: "STRING", # required, accepts STRING, JSON
1689
+ # },
1198
1690
  # },
1199
1691
  # firehose: {
1200
1692
  # delivery_stream_name: "DeliveryStreamName", # required
1201
1693
  # separator: "FirehoseSeparator",
1694
+ # payload: {
1695
+ # content_expression: "ContentExpression", # required
1696
+ # type: "STRING", # required, accepts STRING, JSON
1697
+ # },
1698
+ # },
1699
+ # dynamo_db: {
1700
+ # hash_key_type: "DynamoKeyType",
1701
+ # hash_key_field: "DynamoKeyField", # required
1702
+ # hash_key_value: "DynamoKeyValue", # required
1703
+ # range_key_type: "DynamoKeyType",
1704
+ # range_key_field: "DynamoKeyField",
1705
+ # range_key_value: "DynamoKeyValue",
1706
+ # operation: "DynamoOperation",
1707
+ # payload_field: "DynamoKeyField",
1708
+ # table_name: "DynamoTableName", # required
1709
+ # payload: {
1710
+ # content_expression: "ContentExpression", # required
1711
+ # type: "STRING", # required, accepts STRING, JSON
1712
+ # },
1713
+ # },
1714
+ # dynamo_d_bv_2: {
1715
+ # table_name: "DynamoTableName", # required
1716
+ # payload: {
1717
+ # content_expression: "ContentExpression", # required
1718
+ # type: "STRING", # required, accepts STRING, JSON
1719
+ # },
1720
+ # },
1721
+ # iot_site_wise: {
1722
+ # entry_id: "AssetPropertyEntryId",
1723
+ # asset_id: "AssetId",
1724
+ # property_id: "AssetPropertyId",
1725
+ # property_alias: "AssetPropertyAlias",
1726
+ # property_value: { # required
1727
+ # value: { # required
1728
+ # string_value: "AssetPropertyStringValue",
1729
+ # integer_value: "AssetPropertyIntegerValue",
1730
+ # double_value: "AssetPropertyDoubleValue",
1731
+ # boolean_value: "AssetPropertyBooleanValue",
1732
+ # },
1733
+ # timestamp: {
1734
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
1735
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
1736
+ # },
1737
+ # quality: "AssetPropertyQuality",
1738
+ # },
1202
1739
  # },
1203
1740
  # },
1204
1741
  # ],
@@ -1219,9 +1756,17 @@ module Aws::IoTEvents
1219
1756
  # },
1220
1757
  # sns: {
1221
1758
  # target_arn: "AmazonResourceName", # required
1759
+ # payload: {
1760
+ # content_expression: "ContentExpression", # required
1761
+ # type: "STRING", # required, accepts STRING, JSON
1762
+ # },
1222
1763
  # },
1223
1764
  # iot_topic_publish: {
1224
1765
  # mqtt_topic: "MQTTTopic", # required
1766
+ # payload: {
1767
+ # content_expression: "ContentExpression", # required
1768
+ # type: "STRING", # required, accepts STRING, JSON
1769
+ # },
1225
1770
  # },
1226
1771
  # set_timer: {
1227
1772
  # timer_name: "TimerName", # required
@@ -1236,17 +1781,74 @@ module Aws::IoTEvents
1236
1781
  # },
1237
1782
  # lambda: {
1238
1783
  # function_arn: "AmazonResourceName", # required
1784
+ # payload: {
1785
+ # content_expression: "ContentExpression", # required
1786
+ # type: "STRING", # required, accepts STRING, JSON
1787
+ # },
1239
1788
  # },
1240
1789
  # iot_events: {
1241
1790
  # input_name: "InputName", # required
1791
+ # payload: {
1792
+ # content_expression: "ContentExpression", # required
1793
+ # type: "STRING", # required, accepts STRING, JSON
1794
+ # },
1242
1795
  # },
1243
1796
  # sqs: {
1244
1797
  # queue_url: "QueueUrl", # required
1245
1798
  # use_base_64: false,
1799
+ # payload: {
1800
+ # content_expression: "ContentExpression", # required
1801
+ # type: "STRING", # required, accepts STRING, JSON
1802
+ # },
1246
1803
  # },
1247
1804
  # firehose: {
1248
1805
  # delivery_stream_name: "DeliveryStreamName", # required
1249
1806
  # separator: "FirehoseSeparator",
1807
+ # payload: {
1808
+ # content_expression: "ContentExpression", # required
1809
+ # type: "STRING", # required, accepts STRING, JSON
1810
+ # },
1811
+ # },
1812
+ # dynamo_db: {
1813
+ # hash_key_type: "DynamoKeyType",
1814
+ # hash_key_field: "DynamoKeyField", # required
1815
+ # hash_key_value: "DynamoKeyValue", # required
1816
+ # range_key_type: "DynamoKeyType",
1817
+ # range_key_field: "DynamoKeyField",
1818
+ # range_key_value: "DynamoKeyValue",
1819
+ # operation: "DynamoOperation",
1820
+ # payload_field: "DynamoKeyField",
1821
+ # table_name: "DynamoTableName", # required
1822
+ # payload: {
1823
+ # content_expression: "ContentExpression", # required
1824
+ # type: "STRING", # required, accepts STRING, JSON
1825
+ # },
1826
+ # },
1827
+ # dynamo_d_bv_2: {
1828
+ # table_name: "DynamoTableName", # required
1829
+ # payload: {
1830
+ # content_expression: "ContentExpression", # required
1831
+ # type: "STRING", # required, accepts STRING, JSON
1832
+ # },
1833
+ # },
1834
+ # iot_site_wise: {
1835
+ # entry_id: "AssetPropertyEntryId",
1836
+ # asset_id: "AssetId",
1837
+ # property_id: "AssetPropertyId",
1838
+ # property_alias: "AssetPropertyAlias",
1839
+ # property_value: { # required
1840
+ # value: { # required
1841
+ # string_value: "AssetPropertyStringValue",
1842
+ # integer_value: "AssetPropertyIntegerValue",
1843
+ # double_value: "AssetPropertyDoubleValue",
1844
+ # boolean_value: "AssetPropertyBooleanValue",
1845
+ # },
1846
+ # timestamp: {
1847
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
1848
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
1849
+ # },
1850
+ # quality: "AssetPropertyQuality",
1851
+ # },
1250
1852
  # },
1251
1853
  # },
1252
1854
  # ],
@@ -1266,9 +1868,17 @@ module Aws::IoTEvents
1266
1868
  # },
1267
1869
  # sns: {
1268
1870
  # target_arn: "AmazonResourceName", # required
1871
+ # payload: {
1872
+ # content_expression: "ContentExpression", # required
1873
+ # type: "STRING", # required, accepts STRING, JSON
1874
+ # },
1269
1875
  # },
1270
1876
  # iot_topic_publish: {
1271
1877
  # mqtt_topic: "MQTTTopic", # required
1878
+ # payload: {
1879
+ # content_expression: "ContentExpression", # required
1880
+ # type: "STRING", # required, accepts STRING, JSON
1881
+ # },
1272
1882
  # },
1273
1883
  # set_timer: {
1274
1884
  # timer_name: "TimerName", # required
@@ -1283,17 +1893,74 @@ module Aws::IoTEvents
1283
1893
  # },
1284
1894
  # lambda: {
1285
1895
  # function_arn: "AmazonResourceName", # required
1896
+ # payload: {
1897
+ # content_expression: "ContentExpression", # required
1898
+ # type: "STRING", # required, accepts STRING, JSON
1899
+ # },
1286
1900
  # },
1287
1901
  # iot_events: {
1288
1902
  # input_name: "InputName", # required
1903
+ # payload: {
1904
+ # content_expression: "ContentExpression", # required
1905
+ # type: "STRING", # required, accepts STRING, JSON
1906
+ # },
1289
1907
  # },
1290
1908
  # sqs: {
1291
1909
  # queue_url: "QueueUrl", # required
1292
1910
  # use_base_64: false,
1911
+ # payload: {
1912
+ # content_expression: "ContentExpression", # required
1913
+ # type: "STRING", # required, accepts STRING, JSON
1914
+ # },
1293
1915
  # },
1294
1916
  # firehose: {
1295
1917
  # delivery_stream_name: "DeliveryStreamName", # required
1296
1918
  # separator: "FirehoseSeparator",
1919
+ # payload: {
1920
+ # content_expression: "ContentExpression", # required
1921
+ # type: "STRING", # required, accepts STRING, JSON
1922
+ # },
1923
+ # },
1924
+ # dynamo_db: {
1925
+ # hash_key_type: "DynamoKeyType",
1926
+ # hash_key_field: "DynamoKeyField", # required
1927
+ # hash_key_value: "DynamoKeyValue", # required
1928
+ # range_key_type: "DynamoKeyType",
1929
+ # range_key_field: "DynamoKeyField",
1930
+ # range_key_value: "DynamoKeyValue",
1931
+ # operation: "DynamoOperation",
1932
+ # payload_field: "DynamoKeyField",
1933
+ # table_name: "DynamoTableName", # required
1934
+ # payload: {
1935
+ # content_expression: "ContentExpression", # required
1936
+ # type: "STRING", # required, accepts STRING, JSON
1937
+ # },
1938
+ # },
1939
+ # dynamo_d_bv_2: {
1940
+ # table_name: "DynamoTableName", # required
1941
+ # payload: {
1942
+ # content_expression: "ContentExpression", # required
1943
+ # type: "STRING", # required, accepts STRING, JSON
1944
+ # },
1945
+ # },
1946
+ # iot_site_wise: {
1947
+ # entry_id: "AssetPropertyEntryId",
1948
+ # asset_id: "AssetId",
1949
+ # property_id: "AssetPropertyId",
1950
+ # property_alias: "AssetPropertyAlias",
1951
+ # property_value: { # required
1952
+ # value: { # required
1953
+ # string_value: "AssetPropertyStringValue",
1954
+ # integer_value: "AssetPropertyIntegerValue",
1955
+ # double_value: "AssetPropertyDoubleValue",
1956
+ # boolean_value: "AssetPropertyBooleanValue",
1957
+ # },
1958
+ # timestamp: {
1959
+ # time_in_seconds: "AssetPropertyTimeInSeconds", # required
1960
+ # offset_in_nanos: "AssetPropertyOffsetInNanos",
1961
+ # },
1962
+ # quality: "AssetPropertyQuality",
1963
+ # },
1297
1964
  # },
1298
1965
  # },
1299
1966
  # ],
@@ -1387,7 +2054,7 @@ module Aws::IoTEvents
1387
2054
  params: params,
1388
2055
  config: config)
1389
2056
  context[:gem_name] = 'aws-sdk-iotevents'
1390
- context[:gem_version] = '1.10.0'
2057
+ context[:gem_version] = '1.15.0'
1391
2058
  Seahorse::Client::Request.new(handlers, context)
1392
2059
  end
1393
2060