aws-sdk-iotevents 1.60.0 → 1.61.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotevents/client.rb +1 -1
- data/lib/aws-sdk-iotevents/types.rb +32 -33
- data/lib/aws-sdk-iotevents.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d36c978f6c738f0071a28dcc39449c84e4ef4ebf5b49f0b5d03cedaeb427d78
|
4
|
+
data.tar.gz: 03dc6f4c9fa5e1663bce44b0cc9d6ae5a4c284ae7477bedf6e494eea213614f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb0b6d95384c380f28e34218e187af9a67425aaea47a6c8bad0a7605136dcf94b7c0d6229ca4496f0e7b2c416e930dc37e45c7f6b67048ca9c28c5c26fda5919
|
7
|
+
data.tar.gz: 3bc58a2504c436fa594696bd4f2365e87508da09794989827729214fabb04d2bc3b98cf09846c2889c71cd54a2a3bc329e9d2873368f918baae2f68bce44798d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -183,15 +183,15 @@ module Aws::IoTEvents
|
|
183
183
|
# For example, the value for the `hashKeyField` parameter can be
|
184
184
|
# `$input.GreenhouseInput.name`.
|
185
185
|
#
|
186
|
-
# * For a substitution template, you must use
|
187
|
-
#
|
188
|
-
#
|
189
|
-
#
|
186
|
+
# * For a substitution template, you must use `${}`, and the template
|
187
|
+
# must be in single quotes. A substitution template can also contain
|
188
|
+
# a combination of literals, operators, functions, references, and
|
189
|
+
# substitution templates.
|
190
190
|
#
|
191
191
|
# In the following example, the value for the `hashKeyValue`
|
192
192
|
# parameter uses a substitution template.
|
193
193
|
#
|
194
|
-
# `'
|
194
|
+
# `'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in
|
195
195
|
# Fahrenheit'`
|
196
196
|
#
|
197
197
|
# * For a string concatenation, you must use `+`. A string
|
@@ -239,17 +239,17 @@ module Aws::IoTEvents
|
|
239
239
|
# For example, the value for the `tableName` parameter can be
|
240
240
|
# `$variable.ddbtableName`.
|
241
241
|
#
|
242
|
-
# * For a substitution template, you must use
|
243
|
-
#
|
244
|
-
#
|
245
|
-
#
|
242
|
+
# * For a substitution template, you must use `${}`, and the template
|
243
|
+
# must be in single quotes. A substitution template can also contain
|
244
|
+
# a combination of literals, operators, functions, references, and
|
245
|
+
# substitution templates.
|
246
246
|
#
|
247
247
|
# In the following example, the value for the `contentExpression`
|
248
248
|
# parameter in `Payload` uses a substitution template.
|
249
249
|
#
|
250
|
-
# `'
|
251
|
-
# "temperature": "
|
252
|
-
# 32
|
250
|
+
# `'{"sensorID": "${$input.GreenhouseInput.sensor_id}",
|
251
|
+
# "temperature": "${$input.GreenhouseInput.temperature * 9 / 5 +
|
252
|
+
# 32}"}'`
|
253
253
|
#
|
254
254
|
# * For a string concatenation, you must use `+`. A string
|
255
255
|
# concatenation can also contain a combination of literals,
|
@@ -290,16 +290,16 @@ module Aws::IoTEvents
|
|
290
290
|
# For example, the value for the `assetId` parameter can be
|
291
291
|
# `$input.TurbineInput.assetId1`.
|
292
292
|
#
|
293
|
-
# * For a substitution template, you must use
|
294
|
-
#
|
295
|
-
#
|
296
|
-
#
|
293
|
+
# * For a substitution template, you must use `${}`, and the template
|
294
|
+
# must be in single quotes. A substitution template can also contain
|
295
|
+
# a combination of literals, operators, functions, references, and
|
296
|
+
# substitution templates.
|
297
297
|
#
|
298
298
|
# In the following example, the value for the `propertyAlias`
|
299
299
|
# parameter uses a substitution template.
|
300
300
|
#
|
301
|
-
# `'company/windfarm
|
302
|
-
#
|
301
|
+
# `'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/
|
302
|
+
# ${$input.TemperatureInput.sensorData.turbineID}/temperature'`
|
303
303
|
#
|
304
304
|
# You must specify either `propertyAlias` or both `assetId` and
|
305
305
|
# `propertyId` to identify the target asset property in AWS IoT
|
@@ -587,7 +587,7 @@ module Aws::IoTEvents
|
|
587
587
|
# For example, the value for the `offsetInNanos` parameter can be
|
588
588
|
# `$variable.time`.
|
589
589
|
#
|
590
|
-
# * For a substitution template, you must use
|
590
|
+
# * For a substitution template, you must use `${}`, and the template
|
591
591
|
# must be in single quotes. A substitution template can also contain a
|
592
592
|
# combination of literals, operators, functions, references, and
|
593
593
|
# substitution templates.
|
@@ -595,7 +595,7 @@ module Aws::IoTEvents
|
|
595
595
|
# In the following example, the value for the `timeInSeconds`
|
596
596
|
# parameter uses a substitution template.
|
597
597
|
#
|
598
|
-
# `'
|
598
|
+
# `'${$input.TemperatureInput.sensorData.timestamp / 1000}'`
|
599
599
|
#
|
600
600
|
# For more information, see [Expressions][2] in the *AWS IoT Events
|
601
601
|
# Developer Guide*.
|
@@ -684,7 +684,7 @@ module Aws::IoTEvents
|
|
684
684
|
# example, the value for the `booleanValue` parameter can be
|
685
685
|
# `$variable.offline`.
|
686
686
|
#
|
687
|
-
# * For a substitution template, you must use
|
687
|
+
# * For a substitution template, you must use `${}`, and the template
|
688
688
|
# must be in single quotes. A substitution template can also contain a
|
689
689
|
# combination of literals, operators, functions, references, and
|
690
690
|
# substitution templates.
|
@@ -692,7 +692,7 @@ module Aws::IoTEvents
|
|
692
692
|
# In the following example, the value for the `doubleValue` parameter
|
693
693
|
# uses a substitution template.
|
694
694
|
#
|
695
|
-
# `'
|
695
|
+
# `'${$input.TemperatureInput.sensorData.temperature * 6 / 5 + 32}'`
|
696
696
|
#
|
697
697
|
# For more information, see [Expressions][2] in the *AWS IoT Events
|
698
698
|
# Developer Guide*.
|
@@ -1457,7 +1457,7 @@ module Aws::IoTEvents
|
|
1457
1457
|
# For example, the value for the `hashKeyField` parameter can be
|
1458
1458
|
# `$input.GreenhouseInput.name`.
|
1459
1459
|
#
|
1460
|
-
# * For a substitution template, you must use
|
1460
|
+
# * For a substitution template, you must use `${}`, and the template
|
1461
1461
|
# must be in single quotes. A substitution template can also contain a
|
1462
1462
|
# combination of literals, operators, functions, references, and
|
1463
1463
|
# substitution templates.
|
@@ -1465,8 +1465,7 @@ module Aws::IoTEvents
|
|
1465
1465
|
# In the following example, the value for the `hashKeyValue` parameter
|
1466
1466
|
# uses a substitution template.
|
1467
1467
|
#
|
1468
|
-
# `'
|
1469
|
-
# Fahrenheit'`
|
1468
|
+
# `'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'`
|
1470
1469
|
#
|
1471
1470
|
# * For a string concatenation, you must use `+`. A string concatenation
|
1472
1471
|
# can also contain a combination of literals, operators, functions,
|
@@ -1614,7 +1613,7 @@ module Aws::IoTEvents
|
|
1614
1613
|
# For example, the value for the `tableName` parameter can be
|
1615
1614
|
# `$variable.ddbtableName`.
|
1616
1615
|
#
|
1617
|
-
# * For a substitution template, you must use
|
1616
|
+
# * For a substitution template, you must use `${}`, and the template
|
1618
1617
|
# must be in single quotes. A substitution template can also contain a
|
1619
1618
|
# combination of literals, operators, functions, references, and
|
1620
1619
|
# substitution templates.
|
@@ -1622,9 +1621,9 @@ module Aws::IoTEvents
|
|
1622
1621
|
# In the following example, the value for the `contentExpression`
|
1623
1622
|
# parameter in `Payload` uses a substitution template.
|
1624
1623
|
#
|
1625
|
-
# `'
|
1626
|
-
# "temperature": "
|
1627
|
-
# 32
|
1624
|
+
# `'{"sensorID": "${$input.GreenhouseInput.sensor_id}",
|
1625
|
+
# "temperature": "${$input.GreenhouseInput.temperature * 9 / 5 +
|
1626
|
+
# 32}"}'`
|
1628
1627
|
#
|
1629
1628
|
# * For a string concatenation, you must use `+`. A string concatenation
|
1630
1629
|
# can also contain a combination of literals, operators, functions,
|
@@ -2045,7 +2044,7 @@ module Aws::IoTEvents
|
|
2045
2044
|
# For example, the value for the `assetId` parameter can be
|
2046
2045
|
# `$input.TurbineInput.assetId1`.
|
2047
2046
|
#
|
2048
|
-
# * For a substitution template, you must use
|
2047
|
+
# * For a substitution template, you must use `${}`, and the template
|
2049
2048
|
# must be in single quotes. A substitution template can also contain a
|
2050
2049
|
# combination of literals, operators, functions, references, and
|
2051
2050
|
# substitution templates.
|
@@ -2053,8 +2052,8 @@ module Aws::IoTEvents
|
|
2053
2052
|
# In the following example, the value for the `propertyAlias`
|
2054
2053
|
# parameter uses a substitution template.
|
2055
2054
|
#
|
2056
|
-
# `'company/windfarm
|
2057
|
-
#
|
2055
|
+
# `'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/
|
2056
|
+
# ${$input.TemperatureInput.sensorData.turbineID}/temperature'`
|
2058
2057
|
#
|
2059
2058
|
# You must specify either `propertyAlias` or both `assetId` and
|
2060
2059
|
# `propertyId` to identify the target asset property in AWS IoT
|
@@ -2541,7 +2540,7 @@ module Aws::IoTEvents
|
|
2541
2540
|
# includes quoted strings (`'<string>'`), variables
|
2542
2541
|
# (`$variable.<variable-name>`), input values
|
2543
2542
|
# (`$input.<input-name>.<path-to-datum>`), string concatenations, and
|
2544
|
-
# quoted strings that contain
|
2543
|
+
# quoted strings that contain `${}` as the content. The recommended
|
2545
2544
|
# maximum size of a content expression is 1 KB.
|
2546
2545
|
# @return [String]
|
2547
2546
|
#
|
data/lib/aws-sdk-iotevents.rb
CHANGED
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.61.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: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|