aws-sdk-iotevents 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1989c4e8b88b0c50736587fd9d73fb8c35dabea
4
- data.tar.gz: a69eeeaf0751e3d716afc9d0fcf78b540a848020
3
+ metadata.gz: c9bde9b4b809354ca805eb04f8e66072456913cc
4
+ data.tar.gz: 26625719b849bb7ba48cb0bc91f22321a91f5103
5
5
  SHA512:
6
- metadata.gz: d9a6298d858ab52ab30127ff1f54c371ffd8c89299e415c718ea31f2136120f69ac53595e6d365484816814b1aeaec45238cdffd1dc89e572217bcdda17b583c
7
- data.tar.gz: 7fff2e747df4167bf68913515220d59a2b93746e49d6cd22faceca0c45a340dbf5b7f40eb2a81eaad65e1cceb48570318a2bc3a1cafa8cfe7f069740efefe1f7
6
+ metadata.gz: 13ad8801452132884dc9c0f0284cf9b9f4a73255f2bf76302a8c6862618aecb16db949d647b4ed16ace632812312b9a0cd6f82bd59509630b94f2d9ce3f26a7e
7
+ data.tar.gz: 60fdbf590e34970cd995cbdd074f0a1b5bd6abe456f180995239fc655186e9a9c73d071dd0a26dfe2f0d81c8274ced0cf718448a8fe28f7331f88d9d3e6ff428
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-iotevents/customizations'
42
42
  # @service
43
43
  module Aws::IoTEvents
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
@@ -266,12 +266,12 @@ module Aws::IoTEvents
266
266
  # A brief description of the detector model.
267
267
  #
268
268
  # @option params [String] :key
269
- # The input attribute key used to identify a device or system to create
270
- # a detector (an instance of the detector model) and then to route each
271
- # input received to the appropriate detector (instance). This parameter
272
- # uses a JSON-path expression to specify the attribute-value pair in the
273
- # message payload of each input that is used to identify the device
274
- # associated with the input.
269
+ # The input attribute key used to identify a device or system in order
270
+ # to create a detector (an instance of the detector model) and then to
271
+ # route each input received to the appropriate detector (instance). This
272
+ # parameter uses a JSON-path expression to specify the attribute-value
273
+ # pair in the message payload of each input that is used to identify the
274
+ # device associated with the input.
275
275
  #
276
276
  # @option params [required, String] :role_arn
277
277
  # The ARN of the role that grants permission to AWS IoT Events to
@@ -281,10 +281,8 @@ module Aws::IoTEvents
281
281
  # Metadata that can be used to manage the detector model.
282
282
  #
283
283
  # @option params [String] :evaluation_method
284
- # When set to `SERIAL`, variables are updated and event conditions
285
- # evaluated in the order that the events are defined. When set to
286
- # `BATCH`, variables are updated and events performed only after all
287
- # event conditions are evaluated.
284
+ # Information about the order in which events are evaluated and how
285
+ # actions are executed.
288
286
  #
289
287
  # @return [Types::CreateDetectorModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
290
288
  #
@@ -1037,10 +1035,8 @@ module Aws::IoTEvents
1037
1035
  # perform its operations.
1038
1036
  #
1039
1037
  # @option params [String] :evaluation_method
1040
- # When set to `SERIAL`, variables are updated and event conditions
1041
- # evaluated in the order that the events are defined. When set to
1042
- # `BATCH`, variables are updated and events performed only after all
1043
- # event conditions are evaluated.
1038
+ # Information about the order in which events are evaluated and how
1039
+ # actions are executed.
1044
1040
  #
1045
1041
  # @return [Types::UpdateDetectorModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1046
1042
  #
@@ -1324,7 +1320,7 @@ module Aws::IoTEvents
1324
1320
  params: params,
1325
1321
  config: config)
1326
1322
  context[:gem_name] = 'aws-sdk-iotevents'
1327
- context[:gem_version] = '1.6.0'
1323
+ context[:gem_version] = '1.7.0'
1328
1324
  Seahorse::Client::Request.new(handlers, context)
1329
1325
  end
1330
1326
 
@@ -76,23 +76,23 @@ module Aws::IoTEvents
76
76
  # @return [Types::ResetTimerAction]
77
77
  #
78
78
  # @!attribute [rw] lambda
79
- # Calls an AWS Lambda function, passing in information about the
80
- # detector model instance and the event which triggered the action.
79
+ # Calls a Lambda function, passing in information about the detector
80
+ # model instance and the event that triggered the action.
81
81
  # @return [Types::LambdaAction]
82
82
  #
83
83
  # @!attribute [rw] iot_events
84
84
  # Sends an IoT Events input, passing in information about the detector
85
- # model instance and the event which triggered the action.
85
+ # model instance and the event that triggered the action.
86
86
  # @return [Types::IotEventsAction]
87
87
  #
88
88
  # @!attribute [rw] sqs
89
89
  # Sends information about the detector model instance and the event
90
- # which triggered the action to an Amazon SQS queue.
90
+ # that triggered the action to an Amazon SQS queue.
91
91
  # @return [Types::SqsAction]
92
92
  #
93
93
  # @!attribute [rw] firehose
94
94
  # Sends information about the detector model instance and the event
95
- # which triggered the action to a Kinesis Data Firehose delivery
95
+ # that triggered the action to a Kinesis Data Firehose delivery
96
96
  # stream.
97
97
  # @return [Types::FirehoseAction]
98
98
  #
@@ -380,8 +380,8 @@ module Aws::IoTEvents
380
380
  # @return [String]
381
381
  #
382
382
  # @!attribute [rw] key
383
- # The input attribute key used to identify a device or system to
384
- # create a detector (an instance of the detector model) and then to
383
+ # The input attribute key used to identify a device or system in order
384
+ # to create a detector (an instance of the detector model) and then to
385
385
  # route each input received to the appropriate detector (instance).
386
386
  # This parameter uses a JSON-path expression to specify the
387
387
  # attribute-value pair in the message payload of each input that is
@@ -398,10 +398,8 @@ module Aws::IoTEvents
398
398
  # @return [Array<Types::Tag>]
399
399
  #
400
400
  # @!attribute [rw] evaluation_method
401
- # When set to `SERIAL`, variables are updated and event conditions
402
- # evaluated in the order that the events are defined. When set to
403
- # `BATCH`, variables are updated and events performed only after all
404
- # event conditions are evaluated.
401
+ # Information about the order in which events are evaluated and how
402
+ # actions are executed.
405
403
  # @return [String]
406
404
  #
407
405
  class CreateDetectorModelRequest < Struct.new(
@@ -661,8 +659,8 @@ module Aws::IoTEvents
661
659
  # @return [String]
662
660
  #
663
661
  # @!attribute [rw] key
664
- # The input attribute key used to identify a device or system to
665
- # create a detector (an instance of the detector model) and then to
662
+ # The input attribute key used to identify a device or system in order
663
+ # to create a detector (an instance of the detector model) and then to
666
664
  # route each input received to the appropriate detector (instance).
667
665
  # This parameter uses a JSON-path expression to specify the
668
666
  # attribute-value pair in the message payload of each input that is
@@ -670,10 +668,8 @@ module Aws::IoTEvents
670
668
  # @return [String]
671
669
  #
672
670
  # @!attribute [rw] evaluation_method
673
- # When set to `SERIAL`, variables are updated and event conditions
674
- # evaluated in the order that the events are defined. When set to
675
- # `BATCH`, variables are updated and events performed only after all
676
- # event conditions are evaluated.
671
+ # Information about the order in which events are evaluated and how
672
+ # actions are executed.
677
673
  # @return [String]
678
674
  #
679
675
  class DetectorModelConfiguration < Struct.new(
@@ -955,10 +951,8 @@ module Aws::IoTEvents
955
951
  # @return [String]
956
952
  #
957
953
  # @!attribute [rw] evaluation_method
958
- # When set to `SERIAL`, variables are updated and event conditions
959
- # evaluated in the order that the events are defined. When set to
960
- # `BATCH`, variables are updated and events performed only after all
961
- # event conditions are evaluated.
954
+ # Information about the order in which events are evaluated and how
955
+ # actions are executed.
962
956
  # @return [String]
963
957
  #
964
958
  class DetectorModelVersionSummary < Struct.new(
@@ -1044,8 +1038,8 @@ module Aws::IoTEvents
1044
1038
  include Aws::Structure
1045
1039
  end
1046
1040
 
1047
- # Sends information about the detector model instance and the event
1048
- # which triggered the action to a Kinesis Data Firehose delivery stream.
1041
+ # Sends information about the detector model instance and the event that
1042
+ # triggered the action to a Kinesis Data Firehose delivery stream.
1049
1043
  #
1050
1044
  # @note When making an API call, you may pass FirehoseAction
1051
1045
  # data as a hash:
@@ -1210,8 +1204,8 @@ module Aws::IoTEvents
1210
1204
  include Aws::Structure
1211
1205
  end
1212
1206
 
1213
- # Sends an IoT Events input, passing in information about the detector
1214
- # model instance and the event which triggered the action.
1207
+ # Sends an AWS IoT Events input, passing in information about the
1208
+ # detector model instance and the event that triggered the action.
1215
1209
  #
1216
1210
  # @note When making an API call, you may pass IotEventsAction
1217
1211
  # data as a hash:
@@ -1248,8 +1242,8 @@ module Aws::IoTEvents
1248
1242
  include Aws::Structure
1249
1243
  end
1250
1244
 
1251
- # Calls an AWS Lambda function, passing in information about the
1252
- # detector model instance and the event which triggered the action.
1245
+ # Calls a Lambda function, passing in information about the detector
1246
+ # model instance and the event that triggered the action.
1253
1247
  #
1254
1248
  # @note When making an API call, you may pass LambdaAction
1255
1249
  # data as a hash:
@@ -1259,7 +1253,7 @@ module Aws::IoTEvents
1259
1253
  # }
1260
1254
  #
1261
1255
  # @!attribute [rw] function_arn
1262
- # The ARN of the AWS Lambda function which is executed.
1256
+ # The ARN of the Lambda function that is executed.
1263
1257
  # @return [String]
1264
1258
  #
1265
1259
  class LambdaAction < Struct.new(
@@ -1868,8 +1862,8 @@ module Aws::IoTEvents
1868
1862
  include Aws::Structure
1869
1863
  end
1870
1864
 
1871
- # Sends information about the detector model instance and the event
1872
- # which triggered the action to an Amazon SQS queue.
1865
+ # Sends information about the detector model instance and the event that
1866
+ # triggered the action to an Amazon SQS queue.
1873
1867
  #
1874
1868
  # @note When making an API call, you may pass SqsAction
1875
1869
  # data as a hash:
@@ -1880,7 +1874,7 @@ module Aws::IoTEvents
1880
1874
  # }
1881
1875
  #
1882
1876
  # @!attribute [rw] queue_url
1883
- # The URL of the Amazon SQS queue where the data is written.
1877
+ # The URL of the SQS queue where the data is written.
1884
1878
  # @return [String]
1885
1879
  #
1886
1880
  # @!attribute [rw] use_base_64
@@ -2506,10 +2500,8 @@ module Aws::IoTEvents
2506
2500
  # @return [String]
2507
2501
  #
2508
2502
  # @!attribute [rw] evaluation_method
2509
- # When set to `SERIAL`, variables are updated and event conditions
2510
- # evaluated in the order that the events are defined. When set to
2511
- # `BATCH`, variables are updated and events performed only after all
2512
- # event conditions are evaluated.
2503
+ # Information about the order in which events are evaluated and how
2504
+ # actions are executed.
2513
2505
  # @return [String]
2514
2506
  #
2515
2507
  class UpdateDetectorModelRequest < Struct.new(
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.6.0
4
+ version: 1.7.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: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2020-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core