Class: Aws::IoTAnalytics::Types::DeltaTimeSessionWindowConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::DeltaTimeSessionWindowConfiguration
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
A structure that contains the configuration information of a delta time session window.
DeltaTime
specifies a time interval. You can use DeltaTime
to create dataset contents with data that has arrived in the data
store since the last execution. For an example of DeltaTime
, see
Creating a SQL dataset with a delta window (CLI) in the IoT
Analytics User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timeout_in_minutes ⇒ Integer
A time interval.
Instance Attribute Details
#timeout_in_minutes ⇒ Integer
A time interval. You can use timeoutInMinutes
so that IoT
Analytics can batch up late data notifications that have been
generated since the last execution. IoT Analytics sends one batch of
notifications to Amazon CloudWatch Events at one time.
For more information about how to write a timestamp expression, see Date and Time Functions and Operators, in the Presto 0.172 Documentation.
1497 1498 1499 1500 1501 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 1497 class DeltaTimeSessionWindowConfiguration < Struct.new( :timeout_in_minutes) SENSITIVE = [] include Aws::Structure end |